Created
November 4, 2017 14:34
-
-
Save medkhelifi/446f6b889d70c8367d4ec9cc3e5e8372 to your computer and use it in GitHub Desktop.
Gist fro /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
'use strict'; | |
import React from 'react'; | |
import ReactDOM from 'react-dom'; | |
/** | |
* Main react Javascript class | |
*/ | |
export default class Main extends React.Component{ | |
render(){ | |
return( | |
<div className="row"> | |
HELLO TODO {/* to be changed*/} | |
</div>); | |
} | |
} | |
ReactDOM.render(<Main />, document.getElementById('container')); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment