You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// React.memo is a higher-order component that memoizes a functional component. It prevents unnecessary re-renders by doing a shallow comparison of props.
// It's useful when a component is pure and its re-rendering depends only on props, especially in performance-critical parts of an app.