diff --git a/content/home/examples/a-component-using-external-plugins.js b/content/home/examples/a-component-using-external-plugins.js index 38ba72928..48eac0b62 100644 --- a/content/home/examples/a-component-using-external-plugins.js +++ b/content/home/examples/a-component-using-external-plugins.js @@ -2,7 +2,7 @@ class MarkdownEditor extends React.Component { constructor(props) { super(props); this.handleChange = this.handleChange.bind(this); - this.state = { value: 'Type some *markdown* here!' }; + this.state = { value: 'Hello, **world**!' }; } handleChange(e) { @@ -18,7 +18,11 @@ class MarkdownEditor extends React.Component { return (