import React from 'react'; import DropDownBase from './DropDownBase.js'; import ListSortSettings from './ListSortSettings.js'; export default class ListSortSettingsWindow extends DropDownBase { state = { checksVisible: false } render() { let sort = this.props.override ? this.props.sorting : this.props.defaultSorting; return
Sorting for {this.props.folder}
Show
} expandChecks = () => { this.setState({ checksVisible: !this.state.checksVisible }); } }