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 'react' type Props = { application: WebApplication appState: AppState } const MultipleSelectedNotes = ({ application, appState }: Props) => { const count = appState.notes.selectedNotesCount const cancelMultipleSelection = useCallback(() => { appState.selectedItems.cancelMultipleSelection() }, [appState]) return (
Actions will be performed on all selected notes.