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.
24 lines (21 loc) • 634 B
JavaScript
// ** MUI Imports
import Alert from '@mui/material/Alert'
const AlertsFilled = () => {
return (
<div className='demo-space-y'>
<Alert variant='filled' severity='error'>
This is an error alert — check it out!
</Alert>
<Alert variant='filled' severity='warning'>
This is an warning alert — check it out!
</Alert>
<Alert variant='filled' severity='info'>
This is an info alert — check it out!
</Alert>
<Alert variant='filled' severity='success'>
This is an success alert — check it out!
</Alert>
</div>
)
}
export default AlertsFilled