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

7 lines
121 B
JavaScript
Raw Normal View History

2016-08-03 20:38:01 -04:00
import React from 'react';
export default React.createClass({
render: function() {
return this.props.children;
}
});