I'm using Collapse and Drawer from material-ui
v1 beta to create navigation on mobile website. The navigation has many nested lists.
When I click to expand/collapse a Collapse, there is noticeable delay until the Collapse start to animate. The same problem also occur on the Drawer.
Both Collapse and Drawer use Transition for animation. Transition is provided by react-transition-group
.
To improve responsiveness, I plan to use Collapse and Drawer without Transition (I don't mind having no animation). Is there a way to use Collapse and Drawer without Transition?
P.S. I've checked Collapse's and Drawer's documentation and don't find prop or flag to disable Transition.