Skip to content

Instantly share code, notes, and snippets.

@gmmorris
Created November 28, 2016 16:26
Show Gist options
  • Save gmmorris/8bea95490a0dcf8b918cfc2c15af10de to your computer and use it in GitHub Desktop.
Save gmmorris/8bea95490a0dcf8b918cfc2c15af10de to your computer and use it in GitHub Desktop.
Snippet for "The magical quest for Componentisation"
// Specifically what might interest you is how the following JSX:
<MyButton color="blue" shadowSize={2}> <Echo value="Click Me" /> </MyButton>
// Compiles to:
React.createElement(
MyButton,
{color: 'blue', shadowSize: 2},
React.createElement( Echo, {value: 'Click Me'} )
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment