I'm having trouble implementing a Mui menu on my website and adding a transition effect from the right side. Here is the code I have tried:
<Menu transitionDuration={1} open={Open} onClose={Close} MenuListProps={} className="nav">
<MenuItem >Home</MenuItem>
<MenuItem >About</MenuItem>
<MenuItem >Contact</MenuItem>
</Menu>
Can anyone advise me on how to correctly add a transition effect from the right side in this code? I am new to React and Mui, and despite changing the transition duration to 5, it's not working as expected.