import { Suspense } from "react"; import { getBrowseParamsFromPathParam } from "../hooks/utils"; import { CodePreviewPanel } from "./components/codePreviewPanel"; import { Loader2 } from "lucide-react"; import { TreePreviewPanel } from "./components/treePreviewPanel"; interface BrowsePageProps { params: { path: string[]; domain: string; }; } export default async function BrowsePage({ params: { path: _rawPath, domain } }: BrowsePageProps) { const rawPath = decodeURIComponent(_rawPath.join('/')); const { repoName, revisionName, path, pathType } = getBrowseParamsFromPathParam(rawPath); return (
Loading...
}> {pathType === 'blob' ? ( ) : ( )} ) }