import PropTypes from 'prop-types'
import Box from '@mui/material/Box'
import Typography from '@mui/material/Typography'
export default function Article({numero, contenu}) {
const formattedContent = contenu.replaceAll('\n', '
')
return (
{numero > 0 && (
Article {numero}
)}
)
}
Article.propTypes = {
numero: PropTypes.number,
contenu: PropTypes.string.isRequired
}