```jsx
const value = "Which came first, the phoenix or the flame?";

<TextArea
  value={value}
  onChange={e => console.log(e.target.value)}
  placeholder="Add some text..."
/>
```
