11 lines
286 B
TypeScript
11 lines
286 B
TypeScript
/* eslint-disable import/prefer-default-export */
|
|
|
|
import type { SectionsConfig } from 'Components/Calculation/types/sections';
|
|
|
|
export const elements: SectionsConfig[number][0] = [
|
|
'radioGraphType',
|
|
'selectSeasonType',
|
|
'tbxParmentsDecreasePercent',
|
|
'selectHighSeasonStart',
|
|
];
|