link-stack/apps/link/app/(main)/leafcutter/page.tsx
2024-04-21 20:47:55 +02:00

11 lines
240 B
TypeScript

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