I'm new to react, I have gone through draftjs editor but when I try to use the code, the border is not getting displayed.
Here is a snapshot of the editor:
My Code:
export default class App extends Component {
render() {
return (
<Container>
<Modal trigger={<Button>Show Content</Button>}>
<Modal.Content>
<Editor />
<Button>Send</Button>
</Modal.Content>
</Modal>
</Container>
);
}
}
Here the whole code: "https://codesandbox.io/s/distracted-ritchie-s75re"
Tried giving border but the problem is when i write more words, it is coming down beyond the border. Can anyone help me in this query?


