import { AppState } from '@/ui_models/app_state'; import { IlNotesIcon } from '@standardnotes/stylekit'; import { observer } from 'mobx-react-lite'; import { NotesOptionsPanel } from './NotesOptionsPanel'; import { WebApplication } from '@/ui_models/application'; import { PinNoteButton } from './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.

); } );