import React from 'react'; import {ThemeProps, themeable} from '../../theme'; import InputBox from '../InputBox'; export interface FormulaProps extends ThemeProps { value: any; onChange: (value: any) => void; disabled?: boolean; } export class Formula extends React.Component { render() { const {classnames: cx, value, onChange, disabled} = this.props; return (
表达式} />
); } } export default themeable(Formula);