React Patterns
Everything on SkillVeris tagged React Patterns — collected across the glossary, study notes, blog, and cheat sheets.
4 resources across 1 library
Interview Questions(4)
What Are Higher-Order Components (HOCs) in React?
A higher-order component is a function that takes a component as an argument and returns a new component with added behavior or props, letting you reuse cross-…
What Is the Render Props Pattern in React?
The render props pattern is a technique where a component accepts a function as a prop — often literally named `render`, or passed as `children` — and calls th…
What Is the Compound Components Pattern in React?
Compound components is a pattern where several components work together to form one cohesive UI unit — like `<Select>`, `<Select.Option>` — sharing implicit st…
What Are Optimistic UI Updates and How Do You Implement Them?
Optimistic UI updates mean the interface applies the expected result of an action immediately, before the server confirms it, and only rolls back to the previo…