Skip to content

Instantly share code, notes, and snippets.

@mathieulesniak
Created October 2, 2016 14:46
Show Gist options
  • Save mathieulesniak/053ac184239a76f813831dbcee59b082 to your computer and use it in GitHub Desktop.
Save mathieulesniak/053ac184239a76f813831dbcee59b082 to your computer and use it in GitHub Desktop.
import React from 'react';
import HelloWorld from './HelloWorld';
class ComposedView extends React.Component {
render() {
return <div>
<HelloWorld name="Dan" />
</div>;
}
}
export default ComposedView;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment