var React = require( 'react' ); var WelcomeSection = React.createClass( { render: function() { var { ...other } = this.props; return (
{ this.props.children }
); } } ); module.exports = WelcomeSection;