Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
| 1234567891011 |
- const { CircularProgress, Box } = require('@mui/material');
-
- const LoadingSpinner: React.FC = () => {
- return (
- <Box display="flex" justifyContent="center" sx={{ mt: 5 }}>
- <CircularProgress />
- </Box>
- );
- };
-
- export default LoadingSpinner;
|