Skip to content

Instantly share code, notes, and snippets.

@fredericmarx
Last active June 16, 2016 05:54
Show Gist options
  • Save fredericmarx/a3cb38f6c4810496a99cccedfe124a41 to your computer and use it in GitHub Desktop.
Save fredericmarx/a3cb38f6c4810496a99cccedfe124a41 to your computer and use it in GitHub Desktop.
{/* Transcribed from https://twitter.com/jongold/status/740916331139244032 */}
function Box ({ children }) {
return (
<div className="flex p2 bg-blue white h4 bold">
{ children }
<div>
)
}
function Page({ }) {
return (
<div>
<Box>Chillin</Box>
<Box>With</Box>
<Box>Boxes</Box>
</div>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment