Skip to content

Commit 505aa20

Browse files
committed
cleanup demo
1 parent 73e6eac commit 505aa20

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

demo/dist/js/bundle.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19716,7 +19716,7 @@
1971619716
React.createElement(
1971719717
'pre',
1971819718
null,
19719-
'Value 1:',
19719+
'Demo 1: ',
1972019720
this.state.textValue1
1972119721
),
1972219722
React.createElement('hr', null),
@@ -19727,7 +19727,7 @@
1972719727
React.createElement(
1972819728
'pre',
1972919729
null,
19730-
'Value 2:',
19730+
'Demo 2: ',
1973119731
this.state.textValue2
1973219732
)
1973319733
);

demo/scripts/demo.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,13 +50,13 @@ module.exports = React.createClass({
5050
value={this.state.textValue1}
5151
handleEditorChange={this.handleChange1}
5252
/>
53-
<pre>Value 1:{this.state.textValue1}</pre>
53+
<pre>Demo 1: {this.state.textValue1}</pre>
5454
<hr />
5555
<Editor
5656
value={this.state.textValue2}
5757
handleEditorChange={this.handleChange2}
5858
/>
59-
<pre>Value 2:{this.state.textValue2}</pre>
59+
<pre>Demo 2: {this.state.textValue2}</pre>
6060
</div>
6161
)
6262
}

0 commit comments

Comments
 (0)