2023-02-06 12:19:39 +03:00

13 lines
209 B
JavaScript

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