import {ReactElement} from "react" import {useTranslation} from "react-i18next" import {CircularProgress, Grid, Typography} from "@mui/material" export interface LoadingDataProps { message?: string } export default function LoadingData({message = "Loading"}: LoadingDataProps): ReactElement { const {t} = useTranslation() return ( {t("general.loading")} ) }