import RepoByIdClient from "./repo-client" export default function Page({ searchParams }: { searchParams?: { id?: string; path?: string } }) { const id = (searchParams?.id as string) || "" const path = (searchParams?.path as string) || "" if (!id) { return (
Missing repository id. Go back to My GitHub Repositories.