()
| 132 | * @author: 白雾茫茫丶 |
| 133 | */ |
| 134 | export const ProFormDescribe: FC = () => { |
| 135 | const { formatMessage } = useIntl(); |
| 136 | return ( |
| 137 | <ProFormTextArea |
| 138 | name="describe" |
| 139 | label={formatMessage({ id: INTERNATION.DESCRIBE })} |
| 140 | placeholder={formatMessage({ id: INTERNATION.PLACEHOLDER }) + formatMessage({ id: INTERNATION.DESCRIBE })} |
| 141 | colProps={{ span: 24 }} |
| 142 | fieldProps={{ |
| 143 | showCount: true, |
| 144 | maxLength: 200, |
| 145 | }} |
| 146 | rules={[{ |
| 147 | required: true, |
| 148 | }]} |
| 149 | /> |
| 150 | ) |
| 151 | } |
nothing calls this directly
no outgoing calls
no test coverage detected