12 lines
246 B
TypeScript
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";
|