link-stack/apps/leafcutter/app/(main)/setup/page.tsx

11 lines
178 B
TypeScript
Raw Normal View History

2024-11-25 09:31:25 +01:00
import { Suspense } from "react";
2023-08-25 07:11:33 +00:00
import { Setup } from "./_components/Setup";
2023-06-28 10:52:23 +00:00
export default function Page() {
2024-11-25 09:31:25 +01:00
return (
<Suspense>
<Setup />
</Suspense>
);
2023-06-28 10:52:23 +00:00
}