Created
November 4, 2017 20:54
-
-
Save medkhelifi/5826b73f39d6e658f2e51bd908349b93 to your computer and use it in GitHub Desktop.
Gist for /react-webpack-todolist
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
export default class Main extends React.Component { | |
render() { | |
return React.createElement( | |
"div", | |
{ className: "row" }, | |
"HELLO TODO " | |
); | |
} | |
} | |
ReactDOM.render(React.createElement(Main, null), document.getElementById('container')); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment