// ** MUI Imports import Chip from '@mui/material/Chip' const ChipsClickable = () => { const handleClick = () => { console.info('You clicked the Chip.') } return (
) } export default ChipsClickable