Bino
Home
Essays
Notes
Desk
Drawer
ML
Feed
About
Search
# React
React components
20 Jan 2023
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
14 Dec 2022
Material UI uses Emotion as its default styling engine. Emotion is a library designed for writing css styles with JavaScript.
Read more
React Reconciliation
30 Jul 2022
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
3 Apr 2022
A common pattern is for a component to return a list of children...
Read more
Keyed Fragments
2 Apr 2022
Fragments declared with the explicit <React.Fragment> syntax may have keys.
Read more
Fragments
1 Apr 2022
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
««
«
1
2
3
»
»»