// ** React Imports import { Fragment, SyntheticEvent, useState } from 'react' // ** MUI Imports import Button from '@mui/material/Button' import Snackbar from '@mui/material/Snackbar' import IconButton from '@mui/material/IconButton' // ** Icon Imports import Icon from 'src/@core/components/icon' const SnackbarSimple = () => { // ** State const [open, setOpen] = useState(false) const handleClick = () => { setOpen(true) } const handleClose = (event: Event | SyntheticEvent, reason?: string) => { if (reason === 'clickaway') { return } setOpen(false) } return ( } /> ) } export default SnackbarSimple