Files
konstitisyon.nu/components/konstitisyon/titre.js
T
2024-05-18 09:36:44 +04:00

16 lines
375 B
JavaScript

import PropTypes from 'prop-types'
import Box from '@mui/material/Box'
import Typography from '@mui/material/Typography'
export default function Titre({titre}) {
return (
<Box p={1} marginBlock={1}>
<Typography sx={{textDecoration: 'underline'}} fontWeight='bold'>{titre}</Typography>
</Box>
)
}
Titre.propTypes = {
titre: PropTypes.string.isRequired
}