13 lines
221 B
JavaScript
13 lines
221 B
JavaScript
import renderFormRows from '../../lib/render-rows';
|
|
import { id, rows, title } from './config';
|
|
|
|
function LeasingObject() {
|
|
return renderFormRows(rows);
|
|
}
|
|
|
|
export default {
|
|
Component: LeasingObject,
|
|
id,
|
|
title,
|
|
};
|