Files
dvdash/src/app/page.tsx
Joe Monk 681e645283
All checks were successful
Build and deploy / deploy (push) Successful in 1m23s
Clean up a little, quick things are quick, slow things show a loader
2025-04-29 17:30:03 +01:00

15 lines
397 B
TypeScript

import { DockerTable } from "@/app/_components/docker-table";
import { api } from "@/trpc/server";
export default async function Home() {
void api.docker.list.prefetch();
return (
<main className="flex min-h-screen flex-col items-center justify-center">
<div className="container flex flex-col items-center justify-center gap-12 px-4 py-16">
<DockerTable />
</div>
</main>
);
}