Created
November 28, 2016 16:26
-
-
Save gmmorris/8bea95490a0dcf8b918cfc2c15af10de to your computer and use it in GitHub Desktop.
Snippet for "The magical quest for Componentisation"
This file contains 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
// 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