import React from 'react' import { Row, Col, Checkbox, Select } from 'antd' const Option = Select.Option import { onSectionChange } from './util' import { ISpecConfig } from '../types' import styles from '../../../Workbench.less' interface ISpecSectionParallelProps { spec: ISpecConfig title: string onChange: (value: string | number, propPath: string | string[]) => void } function SpecSectionParallel (props: ISpecSectionParallelProps) { const { spec, title, onChange } = props const { smooth, layout } = spec return (