import {ReactElement} from "react" import {useTranslation} from "react-i18next" import {Grid, Typography} from "@mui/material" import {SimplePage} from "~/components" export default function OverviewRoute(): ReactElement { const {t} = useTranslation() return ( {t("routes.OverviewRoute.description")} ) }