Answer the question
In order to leave comments, you need to log in
How to make collapse on click?
Hello.
Trying to make a small accordion using material-ui.
So far I have done this: https://codesandbox.io/s/rj1yqr28mq
But when you click on the same div, it does not collapse, because the panel is remembered in the state. Tell me how you can solve this problem?
Answer the question
In order to leave comments, you need to log in
handleClick = panel => {
const panelName = this.state.panelName === panel ? null : panel;
this.setState({
panelName,
});
};
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question