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' type Props = { application: WebApplication appState: AppState } export const MultipleSelectedNotes = observer(({ application, appState }: Props) => { const count = appState.notes.selectedNotesCount return (

{count} selected notes

{count} selected notes

Actions will be performed on all selected notes.

) })