how to show a component depend of is true or false react code example
Example: toggle boolean state react
this.setState(prevState => ({
check: !prevState.check
}));
this.setState(prevState => ({
check: !prevState.check
}));