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