BennKingy
BennKingy

Reputation: 1593

MUI animation fades in but not out?

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

Answers (1)

BennKingy
BennKingy

Reputation: 1593

That's all you need to do!

{
    <Fade in={showSignUp} timeout={4000}>
        <SalesSignUp />
    </Fade>
}

Upvotes: 5

Related Questions