There are no reviews yet. Be the first to send feedback to the community and the maintainers!
Repository Details
useMemo allows you to memoize expensive functions so that you can avoid calling them on every render. You simple pass in a function and an array of inputs and useMemo will only recompute the memoized value when one of the inputs has changed.