martinrusev
5/26/2014 - 6:09 AM

React notificitations

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>; 
	}
});