link-stack/apps/link/app/(main)/leafcutter/trends/page.tsx
Darren Clarke c620e4bf25 Flatten
2023-08-25 07:11:33 +00:00

12 lines
246 B
TypeScript

import { Box } from "@mui/material";
import { Trends } from "leafcutter-common";
export default function Page() {
return (
<Box sx={{ p: 3 }}>
<Trends visualizations={[]} />
</Box>
);
}
export const dynamic = "force-dynamic";