2024-09-11 19:15:12 +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:59:17 +00:00
|
|
|
export default function ReposPage() {
|
2024-09-11 04:55:00 +00:00
|
|
|
return (
|
|
|
|
|
<div className="h-screen flex flex-col items-center">
|
|
|
|
|
<NavigationMenu />
|
2024-09-11 19:15:12 +00:00
|
|
|
<Suspense fallback={<div>Loading...</div>}>
|
2024-09-17 04:57:04 +00:00
|
|
|
<div className="max-w-[90%]">
|
|
|
|
|
<RepositoryTable />
|
|
|
|
|
</div>
|
2024-09-11 19:15:12 +00:00
|
|
|
</Suspense>
|
2024-09-11 04:55:00 +00:00
|
|
|
</div>
|
|
|
|
|
)
|
|
|
|
|
}
|