Skip to content

Instantly share code, notes, and snippets.

@vjeux
Created May 22, 2014 00:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vjeux/c87f50101b57191a2bab to your computer and use it in GitHub Desktop.
Save vjeux/c87f50101b57191a2bab to your computer and use it in GitHub Desktop.
var PanelList = React.createClass({
// lots of stuff that front-end engineer is working on
render: function() {
// ...
return (
<div>
<PanelA />
<PanelB />
<PanelC />
</div>
); // Designer can make change to the render function instead of doing some hacky CSS to change it
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment