import AssetImage from 'components/Asset/AssetImage' import TitleAndSubCell from 'components/TitleAndSubCell' export const NAME_META = { accessorKey: 'asset.symbol', header: 'Asset', id: 'symbol' } interface Props { data: BorrowMarketTableData } export default function Name(props: Props) { const { asset } = props.data return (
) }