link-stack/apps/link/app/(main)/leafcutter/page.tsx
2024-06-05 08:52:41 +02:00

11 lines
272 B
TypeScript

import { Home, LeafcutterWrapper } from "@link-stack/leafcutter-ui";
export const dynamic = "force-dynamic";
export default async function Page() {
return (
<LeafcutterWrapper>
<Home visualizations={[]} showWelcome={false} />
</LeafcutterWrapper>
);
}