added a tiny explanation of constructor(props) (#32279)

* added a tiny explanation of constructor(props)

* Formatted properly
This commit is contained in:
smokiebacon
2019-03-10 04:18:37 -07:00
committed by The Coding Aviator
parent bc1211680e
commit fe09fdbc30

View File

@ -56,6 +56,14 @@ copy the code below and paste it into src/App.js
export default App; export default App;
``` ```
If we check the index.js file in the src folder, we find that the above App.js is called into index.js and then rendered. If we check the index.js file in the src folder, we find that the above App.js is called into index.js and then rendered.
The code may look cryptic, especially part with:
```jsx
constructor(props) {
super(props);
}
```
Don't worry about it now. Just know that Class components should always call the base constructor with props and will be useful later when using the 'this' code.
```javascript ```javascript
// Other code // Other code