You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
427 B
20 lines
427 B
2 years ago
|
import React from 'react';
|
||
|
import { Input } from 'antd';
|
||
|
|
||
|
const { TextArea } = Input;
|
||
|
|
||
|
const onChange = (e: React.ChangeEvent<HTMLInputElement | HTMLTextAreaElement>) => {
|
||
|
console.log('Change:', e.target.value);
|
||
|
};
|
||
|
|
||
|
const App: React.FC = () => (
|
||
|
<>
|
||
|
<Input showCount maxLength={20} onChange={onChange} />
|
||
|
<br />
|
||
|
<br />
|
||
|
<TextArea showCount maxLength={100} onChange={onChange} />
|
||
|
</>
|
||
|
);
|
||
|
|
||
|
export default App;
|