13 lines
258 B
JavaScript
13 lines
258 B
JavaScript
import renderFormComponent from 'Components/Calculation/lib/renderFormComponent';
|
|
import config from './config';
|
|
|
|
function Leasing() {
|
|
return renderFormComponent(config);
|
|
}
|
|
|
|
export default {
|
|
id: config.id,
|
|
title: config.title,
|
|
Component: Leasing,
|
|
};
|