Reputation: 1593
https://mui.com/material-ui/api/fade/ < Not sure how to make the animation fade out aswell as in?
Any help is much appreciated.
{showSignUp && (
<Fade in={showSignUp} timeout={4000}>
<SalesSignUp />
</Fade>
)}
Upvotes: 5
Views: 2299
Reputation: 1593
That's all you need to do!
{
<Fade in={showSignUp} timeout={4000}>
<SalesSignUp />
</Fade>
}
Upvotes: 5