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

13 lines
246 B
TypeScript
Raw Normal View History

2023-08-25 07:11:33 +00:00
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";