import React from 'react' import { Input } from 'antd' import { RegExpIsFloat } from '../../components/Table' const { TextArea } = Input 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: