15 lines
565 B
TypeScript
15 lines
565 B
TypeScript
import type { FormTabRows } from '../../lib/render-rows';
|
|
import { transformRowsForMobile } from '../lib/utils';
|
|
|
|
export const id = 'insurance';
|
|
export const title = 'Страхование';
|
|
|
|
export const rows: FormTabRows = [
|
|
[['tbxLeaseObjectYear', 'selectLeaseObjectUseFor', 'selectLegalClientRegion']],
|
|
[['tbxMileage', 'tbxInsFranchise', 'selectLegalClientTown']],
|
|
[['selectGPSBrand', 'cbxWithTrailer', 'selectInsNSIB']],
|
|
[['selectGPSModel', 'cbxInsDecentral', 'selectLeasingWithoutKasko']],
|
|
];
|
|
|
|
export const mobileRows = transformRowsForMobile(rows);
|