当我还是一个开源贡献的初学者时,我最大的挑战之一是找到正确的项目/issue 来为其做贡献。
useEffect
pure function and impure function
useState
Basic about Functional Component
Whenever the state updates, if there’s a different value for the state value as there was in the previous state then it will re render and to re render, we need to run this entire functional component.
React Render Flow and Simple Search Bar
Build Project
npx create-react-app monsters-rolodex
cd monsters-rolodex
yarn start
yarn add cowsay
NPM vs YARN
Install dependencies from package.json: npm install
== yarn
Differences between Interfaces and Type Aliases
Type aliases and interfaces are very similar, and in many cases you can choose between them freely.