diff --git a/client/src/components/grid/LoadingTable.tsx b/client/src/components/grid/LoadingTable.tsx index d7d45aff..ceba34b7 100644 --- a/client/src/components/grid/LoadingTable.tsx +++ b/client/src/components/grid/LoadingTable.tsx @@ -1,40 +1,22 @@ -import { Theme } from '@mui/material'; -import { Skeleton } from '@mui/material'; -import { makeStyles } from '@mui/styles'; - -const getStyles = makeStyles((theme: Theme) => ({ - wrapper: { - padding: theme.spacing(2), - paddingTop: 0, - color: theme.palette.text.primary, - backgroundColor: theme.palette.background.paper, - }, - skeleton: { - transform: 'scale(1)', - background: `linear-gradient(90deg, ${theme.palette.divider} 0%, ${theme.palette.divider} 50%)`, - }, - tr: { - display: 'grid', - gridTemplateColumns: '10% 89%', - gap: '1%', - marginTop: theme.spacing(3), - }, -})); +import { CircularProgress, Typography, Box } from '@mui/material'; +import { useTranslation } from 'react-i18next'; const LoadingTable = (props: { wrapperClass?: string; count: number }) => { const { wrapperClass = '', count } = props; - const classes = getStyles(); - const rows = Array(count || 5).fill(1); + const { t: btnTrans } = useTranslation('btn'); return ( -