// ** MUI Imports import Grid from '@mui/material/Grid' import Typography from '@mui/material/Typography' // ** Custom Components Imports import CardSnippet from 'src/@core/components/card-snippet' // ** Demo Components Imports import SnackbarAlert from 'src/views/components/snackbar/SnackbarAlert' import SnackbarSimple from 'src/views/components/snackbar/SnackbarSimple' import SnackbarPositioned from 'src/views/components/snackbar/SnackbarPositioned' import SnackbarTransition from 'src/views/components/snackbar/SnackbarTransition' import SnackbarConsecutive from 'src/views/components/snackbar/SnackbarConsecutive' import SnackbarControlSlideDirection from 'src/views/components/snackbar/SnackbarControlSlideDirection' // ** Source code imports import * as source from 'src/views/components/snackbar/SnackbarSourceCode' const Snackbar = () => { return ( Manage open prop with Snackbar component with the help of a state. Add Alert component as a children of Snackbar component. Use anchorOrigin prop to change the position of the snackbar. When multiple snackbar updates are necessary, they should appear one at a time. When multiple snackbar updates are necessary, they should appear one at a time. You can change the direction of the Slide transition. ) } export default Snackbar