React notificitations
/** @jsx React.DOM */
var Notification = React.createClass({
componentDidMount: function() {
setTimeout(function() {
React.unmountComponentAtNode(document.getElementById('react-container'));
}, 3000);
},
render: function() {
return <ul className="message small floating">
<li>{ this.props.text }</li>
</ul>;
}
});