Last active
June 16, 2016 05:54
-
-
Save fredericmarx/a3cb38f6c4810496a99cccedfe124a41 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{/* 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