1
ReactBeginner#patterns
Passing props through many intermediate components that do not use them. Fix it with context, composition (children props) or a state library.
// instead of user -> A -> B -> C const UserCtx = createContext(null); const user = useContext(UserCtx); // read directly in C