import React from 'react' import HealthBar from 'components/Account/Health/HealthBar' import TitleAndSubCell from 'components/TitleAndSubCell' import useHealthComputer from 'hooks/useHealthComputer' export const ACCOUNT_META = { id: 'account', header: 'Account', accessorKey: 'id' } interface Props { account: HLSAccountWithStrategy } export default function Name(props: Props) { const { health, healthFactor } = useHealthComputer(props.account) return ( } /> ) }