- https://btholt.github.io/complete-intro-to-react-v6/class-components
- https://reactjs.org/docs/react-component.html
1 | import { Component } from "react"; |
To replace the ctr
1 | # so we can replace the constructor in React.Component class |
Then replace
1 | constructor() { |
With
1 | state = { loading: true }; |