16 lines
569 B
TypeScript
16 lines
569 B
TypeScript
import type { FormComponentConfig } from '../../lib/renderFormComponent';
|
|
|
|
const config: FormComponentConfig = {
|
|
id: 'insurance',
|
|
title: 'Страхование',
|
|
rows: [
|
|
[['tbxLeaseObjectYear', 'selectLeaseObjectUseFor', 'selectLegalClientRegion']],
|
|
[['selectEngineType', 'tbxInsFranchise', 'selectLegalClientTown']],
|
|
[['selectLeaseObjectCategory', 'tbxMileage', 'tbxINNForCalc']],
|
|
[['tbxLeaseObjectMotorPower', 'cbxWithTrailer', 'selectGPSBrand']],
|
|
[['tbxEngineVolume', 'cbxInsDecentral', 'selectGPSModel']],
|
|
],
|
|
};
|
|
|
|
export default config;
|