I wanted to use the fade transition to show an overlay with a loading animation but the fade component only handles opacity and the element is still there. I want to create a custom animation to make sure that the overlay element is not rendered on top of my content until it's time to fade in.
I tried installing the react-transition-group
myself to make one but every time I try to import it's trying to go into the material-ui
node module and load it from there for some reason.
How can I either update the existing transition or be able to create my own from the react-transition-group
component