summaryrefslogtreecommitdiffstats
path: root/examples/Empty.example
blob: 5b58d54685679e5e36e0dbe71797728993eb8362 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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>
    );
  }

}