import React from 'react' import { Row, Col, Checkbox, InputNumber, Select } from 'antd' import { onSectionChange } from './util' import { ISpecConfig } from '../types' import { chartSortModeOptions, chartAlignmentModeOptions } from '../../constants' import styles from '../../../Workbench.less' interface ISpecSectionFunnelProps { spec: ISpecConfig title: string onChange: (value: string | number, propPath: string | string[]) => void } function SpecSectionFunnel (props: ISpecSectionFunnelProps) { const { spec, title, onChange } = props const { sortMode, gapNumber, alignmentMode } = spec return (

{title}

排序 间距 对齐
) } export default SpecSectionFunnel