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

8 lines
158 B
TypeScript
Raw Normal View History

2024-03-20 17:51:21 +01:00
import { Trends } from "leafcutter-ui";
export const dynamic = "force-dynamic";
2023-08-25 07:11:33 +00:00
export default function Page() {
2024-03-20 17:51:21 +01:00
return <Trends visualizations={[]} />;
2023-08-25 07:11:33 +00:00
}