An editor for plain text, with no options for adding blocks or applying text formatting.

```js
<TextEditor
  value=""
  placeholder="Enter some text…"
  onBlur={value => console.log(value)}
  onChange={value => console.log(value)}
/>
```
