#reactjs
Read more stories on Hashnode
Articles with this tag
Yesterday I learned some new concepts in React. Let's start by: Prop Drilling! 🤯 You know you're Prop Drilling when you're passing props deep down...
Keeping UI in sync with data is one of the primary goals of React library. React achieve this by re-rendering the UI whenever there is a change in...
Let's say this is my React form component: function Form() { function handleSubmit(e) { e.preventDefault(); } return ( <form...