React lifecycle
React State Vs Props
React DOcs State and Lifecycle
React Docs handling events
React Tutorial Dev Tools
React Bootstap Doc
Bootstrap Cheatsheet
Bootstrap Shuffle
Netlify
render() happens first
constructor() method. This is called wen the component is first created
after the component has been rendered and inserted into the DOM. It is a good place to perform any actions that need to be done after the component is visible, such as making API requests or subscribing to events.
You can pass any JavaScript value as a prop, including strings, numbers, booleans, objects, arrays, and functions
They are both used to pass data to components, but they are used in different ways. for instance Props can be Passed to a Child Component but a State cannot be passed.