import React, { useState } from 'react'; import styles from '../encounters-list/hts-overview-list.scss'; import { useTranslation } from 'react-i18next'; import { EmptyState } from 'openmrs-esm-ohri-commons-lib'; import { Button } from 'carbon-components-react'; import { Add16 } from '@carbon/icons-react'; const ClientLinkage = () => { const { t } = useTranslation(); const headerTitle = 'Client Linkage'; const [rows, setRows] = useState([]); return ( <> {rows.length ? (