react-garden
Version:
React + TypeScript + ThreeJS app using Material UI on NextJS, Apollo Client, GraphQL + WordPress REST APIs, for ThreeD web development.. a part of the threed.ai code family.
18 lines (14 loc) • 427 B
JavaScript
// ** MUI Imports
import Chip from '@mui/material/Chip'
const ChipsClickable = () => {
const handleClick = () => {
console.info('You clicked the Chip.')
}
return (
<div className='demo-space-x'>
<Chip label='Clickable' onClick={handleClick} />
<Chip label='Clickable Link' component='a' href='https://themeselection.com/' target='_blank' clickable />
</div>
)
}
export default ChipsClickable