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

12 lines
272 B
TypeScript
Raw Normal View History

2024-06-05 08:52:41 +02:00
import { Home, LeafcutterWrapper } from "@link-stack/leafcutter-ui";
2023-06-26 10:07:12 +00:00
2024-04-21 20:47:55 +02:00
export const dynamic = "force-dynamic";
2023-08-25 07:11:33 +00:00
export default async function Page() {
return (
<LeafcutterWrapper>
2024-05-09 07:42:44 +02:00
<Home visualizations={[]} showWelcome={false} />
2023-08-25 07:11:33 +00:00
</LeafcutterWrapper>
);
2023-06-26 10:07:12 +00:00
}