import { AppState } from '@/ui_models/app_state'; import { toDirective } from './utils'; import NotesIcon from '../../icons/il-notes.svg'; 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; }; const MultipleSelectedNotes = observer(({ application, appState }: Props) => { const count = appState.notes.selectedNotesCount; return (
Actions will be performed on all selected notes.