diff --git a/client/src/components/screens/Patient/components/PatientDetails/DetailsRow.tsx b/client/src/components/screens/Patient/components/PatientDetails/DetailsRow.tsx index 97aa74cb..4e173728 100644 --- a/client/src/components/screens/Patient/components/PatientDetails/DetailsRow.tsx +++ b/client/src/components/screens/Patient/components/PatientDetails/DetailsRow.tsx @@ -1,10 +1,13 @@ import React, { ReactNode } from 'react'; +import { Typography } from 'antd'; type Props = { title: string; value?: string | ReactNode }; +const { Text } = Typography; + const DetailsRow = ({ title, value }: Props): React.ReactElement => (