sourcebot/src/app/repos/page.tsx

16 lines
468 B
TypeScript
Raw Normal View History

2024-09-11 05:23:40 +00:00
import { Suspense } from "react";
2024-09-11 05:38:09 +00:00
import { NavigationMenu } from "../navigationMenu";
import { RepositoryTable } from "./repositoryTable";
2024-09-11 04:55:00 +00:00
2024-09-11 05:38:09 +00:00
export const dynamic = 'force-dynamic'
2024-09-11 04:55:00 +00:00
2024-09-11 05:38:09 +00:00
export default async function ReposPage() {
2024-09-11 04:55:00 +00:00
return (
<div className="h-screen flex flex-col items-center">
<NavigationMenu />
2024-09-11 05:23:40 +00:00
<Suspense fallback={<div>Loading...</div>}>
2024-09-11 05:38:09 +00:00
<RepositoryTable />
2024-09-11 05:23:40 +00:00
</Suspense>
2024-09-11 04:55:00 +00:00
</div>
)
}