DEV Community

Discussion on: Compound components - React

Collapse
 
wuarmin profile image
Armin

Do I really need useCallback or useMemo, or do I need them only if I have performance issues?

Collapse
 
bqardi profile image
Sune Seifert

useCallback and useMemo are not required to implement this pattern. They can surely be used in this pattern like all other hooks, including custom hooks. Basically the only requirement for you to use the compound component pattern is a slight shift in thinking (and understanding it off course).