|
|
@@ -1,4 +1,5 @@ |
|
|
|
import {Box, CircularProgress, Grid} from "@mui/material"; |
|
|
|
import {Box, CircularProgress, Grid, Typography} from "@mui/material"; |
|
|
|
import {FormattedMessage} from "react-intl"; |
|
|
|
|
|
|
|
const LoadingComponent = () => { |
|
|
|
return ( |
|
|
@@ -9,7 +10,13 @@ const LoadingComponent = () => { |
|
|
|
alignItems="center" |
|
|
|
// autoHeight={true} |
|
|
|
> |
|
|
|
<CircularProgress /> |
|
|
|
<Grid container direction="column" alignItems="center"> |
|
|
|
<CircularProgress/> |
|
|
|
<Typography variant="h5"> |
|
|
|
<FormattedMessage id="loading" /> |
|
|
|
</Typography> |
|
|
|
</Grid> |
|
|
|
|
|
|
|
</Box> |
|
|
|
</Grid> |
|
|
|
) |
|
|
|