summaryrefslogtreecommitdiffstats
path: root/examples/Empty.example
blob: e225288f1a37d84465d6d670f8d3a65623890c42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// import TextareaAutosize from 'react-autosize-textarea';

class Example extends React.Component {

  render() {
    const textareaStyle = {
      padding: '10px 8px',
      border: '1px solid rgba(39,41,43,.15)',
      borderRadius: 4,
      fontSize: 15,
      width: 300
    };

    return (
      <div>
        <h2>Empty</h2>
        <TextareaAutosize style={textareaStyle} placeholder='try writing some lines'/>
      </div>
    );
  }

}