Files
pawol.nu/components/teks/montre-teks.js
T
Cédric FAMIBELLE-PRONZOLA c1138b648a Create MontreTeks component
2022-05-22 22:21:38 +04:00

16 lines
388 B
JavaScript

import PropTypes from 'prop-types'
import Box from '@mui/material/Box'
import {Button} from '@mui/material'
export default function MontreTeks({handleClick}) {
return (
<Box sx={{'& > :not(style)': {m: 1.7}}}>
<Button variant='text' onClick={handleClick}>Afficher tous les textes</Button>
</Box>
)
}
MontreTeks.propTypes = {
handleClick: PropTypes.func.isRequired
}