React Js Controlled, Uncontrolled component
event.persist() in React js
event.persist() should be called when using React synthetic events inside an asynchronous callback function
React Js + Fetch info
React + Fetch – HTTP PUT Request Examples: https://jasonwatmore.com/post/2020/11/02/react-fetch-http-put-request-examples
React Js React Form
Create a form for updating a remote item with React
https://dev.to/cesareferrari/create-a-form-for-updating-a-remote-item-with-react-7of
React Router info
URL Parameters with React Router: https://www.cluemediator.com/url-parameters-with-react-router
React Hooks info
How To Fetch Data From an API With React Hooks: https://medium.com/better-programming/how-to-fetch-data-from-an-api-with-react-hooks-9e7202b8afcd
They let you use state and other React features without writing a class.
https://reactjs.org/docs/hooks-overview.html
React: Class Component VS Function Component with Hooks:
https://dev.to/danielleye/react-class-component-vs-function-component-with-hooks-13dg
Hooks are a new addition in React 16.8. The most useful feature of Hooks is that it allows using state without using class.
Effect hook will get invoked with the first DOM updating. We can pass in a function in useEffect, and every time the DOM gets updated, the function in useEffect will get invoked too. Also, the effect hook allows you to pass in an array as the second argument, which contains all the dependencies that will trigger the effect hook. if any of the dependencies changed, the effect hook will run again. This feature provides us a more efficient way to make an Ajax request. Instead of making the request every time with DOM updates, you can pass in dependencies that only make the request while these values change.
Comparing with these two ways to create a component, we can clearly see that hooks need less code and it is more clear to read and understand. Hooks give us a more efficient way to replace lifecycle methods.
React Js – Understanding useState’s – info
React Js – Understanding useState’s initial value:
If you’re coming over from React’s class components, you might be confused about how useState works, particularly since you can now define what the initial value is.
const [someState, setSomeState] = useState(‘starting value’);
https://maxrozen.com/how-to-use-react-usestate-hook-initial-value/
########
6 State Mistakes Every Junior React Developer Makes
React Js
React JS for Beginners — The Basics: https://codeburst.io/react-js-for-beginners-the-basics-87ef6e54dae7
React Function Components info
https://www.robinwieruch.de/react-function-component
Cloud Firestore — Add, Set, Update, Delete, Get data – https://saveyourtime.medium.com/firebase-cloud-firestore-add-set-update-delete-get-data-6da566513b1b
Working with Bootstrap’s Modals in React: https://www.pluralsight.com/guides/working-with-bootstraps-modals-react
React Js Deploy
Deploy Static React App: https://www.hostwinds.com/guide/deploy-static-react-app/
How To Set Up a React Project with Create React App: https://www.digitalocean.com/community/tutorials/how-to-set-up-a-react-project-with-create-react-app
Use WordPress with React to Create Headless CMS for Your Web Application:
https://www.cloudways.com/blog/use-react-with-wordpress-to-create-headless-cms/