16 lines
375 B
JavaScript
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
|
||
|
|
}
|