Skip to content

Commit d26cb71

Browse files
authored
Fix typo in Readme.md
There is a small typos in examples. Showing that we import with name SimpleMDE, but in JSX Markup we have SimpleMDEReact instead.
1 parent 537f876 commit d26cb71

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Note - while SimpleMDE options has an `initialValue` option, this component only
5757
var React = require('react');
5858
var SimpleMDE = require('react-simplemde-editor');
5959

60-
<SimpleMDEReact
60+
<SimpleMDE
6161
onChange={this.handleChange}
6262
options={{
6363
autofocus: true,
@@ -81,7 +81,7 @@ extraKeys = {
8181
}
8282
};
8383

84-
<SimpleMDEReact
84+
<SimpleMDE
8585
onChange={this.handleChange}
8686
extraKeys={extraKeys}
8787
/>

0 commit comments

Comments
 (0)