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.
28 lines
732 B
28 lines
732 B
import React, { useState } from 'react';
|
|
import { Input } from 'antd';
|
|
|
|
const { TextArea } = Input;
|
|
|
|
const App: React.FC = () => {
|
|
const [value, setValue] = useState('');
|
|
|
|
return (
|
|
<>
|
|
<TextArea placeholder="Autosize height based on content lines" autoSize />
|
|
<div style={{ margin: '24px 0' }} />
|
|
<TextArea
|
|
placeholder="Autosize height with minimum and maximum number of lines"
|
|
autoSize={{ minRows: 2, maxRows: 6 }}
|
|
/>
|
|
<div style={{ margin: '24px 0' }} />
|
|
<TextArea
|
|
value={value}
|
|
onChange={(e) => setValue(e.target.value)}
|
|
placeholder="Controlled autosize"
|
|
autoSize={{ minRows: 3, maxRows: 5 }}
|
|
/>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default App;
|
|
|