Created
February 14, 2016 00:19
-
-
Save mhairston/bea6dbf64e6c47b03000 to your computer and use it in GitHub Desktop.
Sample Markup in React
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
Markup in React | |
Javascript: | |
return React.createElement("p", {className: "foo"}, "Hello, world!"); | |
JSX: | |
return (<p className="foo">Hello, world!</p>); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment