import { AppState } from '@/UIModels/AppState' import { IlNotesIcon } from '@standardnotes/icons' import { observer } from 'mobx-react-lite' import { NotesOptionsPanel } from '@/Components/NotesOptions/NotesOptionsPanel' import { WebApplication } from '@/UIModels/Application' import { PinNoteButton } from '@/Components/PinNoteButton/PinNoteButton' import { Button } from '../Button/Button' import { useCallback } from 'preact/hooks' type Props = { application: WebApplication appState: AppState } export const MultipleSelectedNotes = observer(({ application, appState }: Props) => { const count = appState.notes.selectedNotesCount const cancelMultipleSelection = useCallback(() => { appState.selectedItems.cancelMultipleSelection() }, [appState]) return (

{count} selected notes

{count} selected notes

Actions will be performed on all selected notes.

) })