import { Box, Typography } from "@mui/material"; import { useTranslation } from "react-i18next"; export const OverviewEmpty = (props: { height?: string }) => { const [t] = useTranslation(); const height = props.height ? props.height : "50vh"; return <> {t('nothingHereYet')} {t('nothingHereYetAction')} ; };