import React from 'react'; import { Input } from 'antd'; import styles from './styles.less'; import { TextAreaProps } from '../editInterface'; export default function(props: TextAreaProps) { const { maxLength, value, disabled, placeholder, autosize } = props; const selfProps = { value, disabled, placeholder, autosize }; return (
{maxLength ? ( {`已输入${(value || '').length || 0}/${maxLength}`} ) : null}
); }