_toggleSection()

in src/templates/components/Sidebar/Sidebar.js [67:71]


  _toggleSection(section) {
    this.setState(state => ({
      activeSection: state.activeSection === section ? null : section,
    }));
  }