import React from 'react'; import { useTranslation } from 'react-i18next'; import { ActionMenuButton2, StickyNoteAddIcon } from '@openmrs/esm-framework'; export default function WardPatientNotesActionButton() { const { t } = useTranslation(); return ( } label={t('PatientNote', 'Patient Note')} workspaceToLaunch={{ workspaceName: 'ward-patient-notes-workspace', }} /> ); }