link-stack/apps/link/app/(main)/leafcutter/page.tsx
2024-05-09 07:42:44 +02:00

11 lines
260 B
TypeScript

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