Skip to content

Instantly share code, notes, and snippets.

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