Codbix
Home
Garden
Notes
Collections
Projects
Tags
About
#react
React Components
Conceptually, components are like JavaScript functions. They accept arbitrary inputs and return React elements describing what should appear on the screen.
Read more
Material UI and Emotion
Material UI uses Emotion as its default styling engine. Emotion is a library designed for writing css styles with JavaScript.
Read more
React Reconciliation
When a component's props or state change, React decides whether an actual DOM update is necessary by comparing the same with Virtual DOM...
Read more
Motivation for fragments
A common pattern is for a component to return a list of children...
Read more
useState
useState is a React Hook that lets you add a state variable to your component...
Read more
Keyed Fragments
Fragments declared with the explicit <React.Fragment> syntax may have keys.
Read more
Fragments
A common pattern in React is for a component to return multiple elements. Fragments let you group a list of children without adding extra nodes to the DOM.
Read more