import { Card } from 'components/Form/Card'; import Row from 'components/Form/Row'; const BlockListsCard = (props: {data: any, title: string, actionButtons: any }): JSX.Element => { const blockLists = props.data.blocklists; return ( { blockLists.map((blocklist: any) => ( ))} ); } export default BlockListsCard;