I have created the below class
class App extends Component{
render() {
return (
<div className="app"></div>
);
}
}
How do i set initial state?
getInitialState()
isn't working?
what am i doing wrong?
The react docs are also not helping.