22 lines
456 B
JavaScript
22 lines
456 B
JavaScript
import renderFormComponent from 'Components/Calculation/lib/renderFormComponent';
|
|
import { Flex } from 'UIKit/grid';
|
|
import config from './config';
|
|
|
|
function Insurance() {
|
|
const rows = renderFormComponent(config);
|
|
|
|
return (
|
|
<Flex flexDirection="column">
|
|
{rows}
|
|
{/* TODO: add Insurance Table */}
|
|
{/* TODO: add FinGAP Table */}
|
|
</Flex>
|
|
);
|
|
}
|
|
|
|
export default {
|
|
id: config.id,
|
|
title: config.title,
|
|
Component: Insurance,
|
|
};
|