import { Card } from 'web-check-live/components/Form/Card'; import Row from 'web-check-live/components/Form/Row'; const cardStyles = ` grid-column: span 2; span.val { max-width: 32rem !important; } span { overflow: hidden; } `; const TxtRecordCard = (props: {data: any, title: string, actionButtons: any }): JSX.Element => { const records = props.data; return ( { !records && } {Object.keys(records).map((recordName: any, index: number) => { return ( ); })} ); } export default TxtRecordCard;