loners-form
Version:
为工作而生,基于 antd 而生的可配置化表单
11 lines (10 loc) • 343 B
TypeScript
import React from 'react';
import type { ShowQA } from '../interface';
import type { TextAreaProps } from 'antd/lib/input/TextArea';
import '../index.less';
export interface TextAreaGoProps extends TextAreaProps {
fixedWidth?: boolean;
showQA?: ShowQA;
}
declare const TextareaGo: React.FC<TextAreaGoProps>;
export default TextareaGo;