13 lines
226 B
JavaScript

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