DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
| Code Block | ||||
|---|---|---|---|---|
| ||||
var Notice = React.createClass({
getInitialState: function() {
return {status: false, message: ""};
},
render: function() {
if (this.state.status) {
return <span class="Alert">{this.state.message}</span>;
} else {
return <span class="Normal">All is well</span>;
}
}
}); |
Whenever the Notice's state.status changes, ReactJS runs the Notice.render function which returns a <span> with a an alert message or "All is well".
...