mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-05 01:19:45 +08:00
20 lines
427 B
TypeScript
20 lines
427 B
TypeScript
|
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;
|