upmostly / modali

A delightful modal dialog component for React, built from the ground up to support React Hooks.
212 stars 23 forks source link

Memoize toggle function #42

Open Velenir opened 4 years ago

Velenir commented 4 years ago

Currently toggle function is created anew on each render. If later passed as a prop to a component it can cause unnecessary rerenders.

Memoizing toggle with useCallback would avoid that