Material UI's Snackbar is not sliding down
问题 I am using Material-UI for the first time and trying to implement Snackbar on success of an API post. I want the Snackbar to slide up onEnter and then slide down onExit. I was able to implement slide up onEnter but need help for "Slide down onExit". Can anyone help me? import React, { useState } from "react"; import Snackbar from "@material-ui/core/Snackbar"; import Slide from "@material-ui/core/Slide"; const [openSnackBar, setOpenSnackBar] = useState(false); const renderSnackbar = () => {