import { Input } from 'antd' import { RegExpIsFloat } from '@components/Table' import '@styles/measure.css' export const v = (text) => (
{text}
) export const numericColumnOptions = { editable: true, initialValue: 0, width: '3rem', formItemRules: [ { required: true, message: `Введите число`, pattern: RegExpIsFloat, }, ], }; export const textColumnOptions = { editable: true, input: , width: '3rem', formItemRules: [{ required: true, message: `Введите текст` }], }