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ů.
| 123456789101112131415 |
- import { Grid } from '@mui/material';
-
- interface Props {
- children: JSX.Element
- }
-
- const GridItem: React.FC<Props> = ({ children }) => {
- return (
- <Grid item md={4} sm={6} xs={12} sx={{ mb: '100px' }}>
- {children}
- </Grid>
- );
- };
-
- export default GridItem;
|