-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
46 lines (38 loc) · 792 Bytes
/
main.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
var Component = React.createClass({
propTypes: {
name: React.PropTypes.string.isRequired
},
render: function() {
return React.DOM.span(null, "This is a span content and my name is " + this.props.name);
}
});
var TextAreaCounter = React.createClass({
proptyes: {
text: React.PropTypes.string
},
getInitialState: function() {
return {
text: this.props.text,
};
},
_textChange: function(ev) {
this.setState({
text: ev.target.value
});
},
render: function() {
return React.DOM.div(null,
React.DOM.textarea({
value: this.state.text,
onChange: this._textChange
}),
React.DOM.h3(null, this.state.text.length)
);
}
});
ReactDOM.render(
React.createElement( TextAreaCounter, {
text: "Bob"
}),
document.getElementById("app")
);