import PropTypes from 'prop-types' import Box from '@mui/material/Box' import Typography from '@mui/material/Typography' export default function Titre({titre}) { return ( {titre} ) } Titre.propTypes = { titre: PropTypes.string.isRequired }