I've just started using create-react-app and am not very familiar with the src setup. I noticed that in App.js, the exported App component is a function, as opposed to class App extends React.Component...
I can't seem to add a constructor to it. Anyone know where I can do so? Thank you
constructor, only class based components can have aconstructordefined in them.