2022-06-14 14:04:15 +03:00

13 lines
230 B
JavaScript

import renderFormRows from 'Components/Calculation/lib/render-rows';
import { id, rows, title } from './config';
function Insurance() {
return renderFormRows(rows);
}
export default {
id,
title,
Component: Insurance,
};