I have tried to implement a multiple level nested list, and I couldn't find a way to do it. Does anybody has a solution? Thanks!!!
We do https://material-ui-next.com/demos/lists/#nested-list.
I am trying to do same as given in demo
but I am not able to import Collapse
import Collapse from 'material-ui/transitions/Collapse'; //this line is giving error
Please tell what I should do to make nested list.
Getting same error as prachi708 ^
Error thrown: Module not found: Can't resolve 'material-ui/transitions/Collapse'
Seems the transitions folder isn't included in the package by default. Any other way to install?
@Bryanprz Install the v1.0.0-beta version of Material-UI.
Seems to be working now, thank you!
Most helpful comment
I am trying to do same as given in demo
but I am not able to import Collapse
import Collapse from 'material-ui/transitions/Collapse'; //this line is giving error
Please tell what I should do to make nested list.