import { Box, useTheme } from "@mui/material"; import GeographyChart from "../../components/GeographyChart"; import Header from "../../components/Header"; import { tokens } from "../../theme"; const Geography = () => { const theme = useTheme(); const colors = tokens(theme.palette.mode); return (
); }; export default Geography;