What are render props and when is it useful?
Answer
•This pattern: prop is a function returning UI.
•Allows sharing logic.
•Now often replaced by hooks.
•Useful for library components.
•Watch out for performance (new function on each render).
Was this answer helpful?