Created
May 8, 2018 02:00
-
-
Save isacjunior/1e73dd29532866d6d64bd195454726df 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
var nav = React.createElement( | |
"nav", | |
{ className: "menu" }, | |
React.createElement( | |
"ul", | |
null, | |
React.createElement( | |
"li", | |
null, | |
React.createElement( | |
"a", | |
{ href: "#" }, | |
"Home" | |
) | |
), | |
React.createElement( | |
"li", | |
null, | |
React.createElement( | |
"a", | |
{ href: "#" }, | |
"About" | |
) | |
) | |
) | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment