import { TOGGLE_LIST_PANE_KEYBOARD_COMMAND, TOGGLE_NAVIGATION_PANE_KEYBOARD_COMMAND } from '@standardnotes/ui-services' import { useMemo } from 'react' import MenuItem from '../Menu/MenuItem' import { MenuItemType } from '../Menu/MenuItemType' import { observer } from 'mobx-react-lite' import { useResponsiveAppPane } from '../ResponsivePane/ResponsivePaneProvider' import { useCommandService } from '../ApplicationView/CommandProvider' const PanelSettingsSection = () => { const { isListPaneCollapsed, isNavigationPaneCollapsed, toggleListPane, toggleNavigationPane } = useResponsiveAppPane() const commandService = useCommandService() const navigationShortcut = useMemo( () => commandService.keyboardShortcutForCommand(TOGGLE_NAVIGATION_PANE_KEYBOARD_COMMAND), [commandService], ) const listShortcut = useMemo( () => commandService.keyboardShortcutForCommand(TOGGLE_LIST_PANE_KEYBOARD_COMMAND), [commandService], ) return (
Show Tags Panel Show Notes Panel
) } export default observer(PanelSettingsSection)