2022-06-27 15:08:26 +03:00

13 lines
213 B
JavaScript

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