import { ViewControllerManager } from '@/Services/ViewControllerManager' import { IlNotesIcon } from '@standardnotes/icons' import { observer } from 'mobx-react-lite' import NotesOptionsPanel from '@/Components/NotesOptions/NotesOptionsPanel' import { WebApplication } from '@/Application/Application' import PinNoteButton from '@/Components/PinNoteButton/PinNoteButton' import Button from '../Button/Button' import { useCallback } from 'react' type Props = { application: WebApplication viewControllerManager: ViewControllerManager } const MultipleSelectedNotes = ({ application, viewControllerManager }: Props) => { const count = viewControllerManager.notesController.selectedNotesCount const cancelMultipleSelection = useCallback(() => { viewControllerManager.selectionController.cancelMultipleSelection() }, [viewControllerManager]) return (

{count} selected notes

{count} selected notes

Actions will be performed on all selected notes.

) } export default observer(MultipleSelectedNotes)