import React, { useEffect, useState } from 'react'; import { useTranslation } from 'react-i18next'; import { EmptyState } from 'openmrs-esm-ohri-commons-lib'; interface AppointmentsListProps { patientUuid: string; } const AppointmentsList: React.FC = ({ patientUuid }) => { const { t } = useTranslation(); const headerTitle = t('appointments', 'Appointments'); const displayText = t('appointments', 'Appointments'); return ( <> ); }; export default AppointmentsList;