import renderFormRows from 'Components/Calculation/lib/render-rows'; import { Flex } from 'UIKit/grid'; import { id, rows, title } from './config'; function Insurance() { const renderedRows = renderFormRows(rows); return ( {renderedRows} {/* TODO: add Insurance Table */} {/* TODO: add FinGAP Table */} ); } export default { id, title, Component: Insurance, };