tutorials/frontendJS/full-stack-react-redux/voting-client/src/components/Winner.jsx

11 lines
259 B
JavaScript
Raw Normal View History

2016-08-03 20:38:01 -04:00
import React from 'react';
import PureRenderMixin from 'react-addons-pure-render-mixin';
export default React.createClass({
mixins: [PureRenderMixin],
render: function() {
return <div className="winner">
Winner is {this.props.winner}!
</div>;
}
});