import {React} from "modules"; import DownArrow from "../../ui/icons/downarrow"; export default class Category extends React.Component { constructor(props) { super(props); this.state = { expanded: true }; } render() { return
this.setState({expanded: !this.state.expanded})}>
{this.props.icon ? this.props.icon : null}
{this.props.label}
{this.state.expanded && this.props.children}
; } }