Skip to content

Instantly share code, notes, and snippets.

@daneden
Last active November 5, 2015 00:25
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 daneden/217d4f7ceeb76d4416e3 to your computer and use it in GitHub Desktop.
Save daneden/217d4f7ceeb76d4416e3 to your computer and use it in GitHub Desktop.
render: function() {
return (
<Grid>
<GridCol width="1-of-2">
<p>Hello, world!</p>
</GridCol>
<GridCol width="1-of-2">
<p>This is a column!</p>
</GridCol>
</Grid>
);
}
// Output:
// <div class="o-grid">
// <div class="o-grid__col o-grid__col--1-of-2">
// <p>Hello, world!</p>
// [etc]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment