10 lines
295 B
TypeScript
10 lines
295 B
TypeScript
/* eslint-disable import/prefer-default-export */
|
|
import type { FormComponentConfig } from '../../lib/renderFormComponent';
|
|
|
|
export const elements: FormComponentConfig['rows'][number][0] = [
|
|
'radioGraphType',
|
|
'selectSeasonType',
|
|
'tbxParmentsDecreasePercent',
|
|
'selectHighSeasonStart',
|
|
];
|