I'm trying/playing around with React and have some issues that I cant seem to find on google and there's nothing in my console log? Can anybody tell me why this isn't working? React and ReactDOM libraries are included...
HTML
<div id="app"></div>
JS
class App extends React.Component{
render(){
return (
<div>Hello</div>
)
}
}
ReactDOM.render(App, document.getElementById('app'));