Created
February 22, 2017 07:59
-
-
Save algesten/1851f9d4189114c1522254723c0eb44d to your computer and use it in GitHub Desktop.
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
const MyThing = () => { | |
return _react2.default.createElement('div', | |
_react2.default.createElement(Title), | |
_react2.default.createElement(Counter, {panda:42}), | |
_react2.default.createElement(ButtonCounterInc), | |
_react2.default.createElement(ButtonTitle) | |
); | |
}; |
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
const MyThing = () => { | |
return <div> | |
<Title /> | |
<Counter panda="42"/> | |
<ButtonCounterInc /> | |
<ButtonTitle /> | |
</div> | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment