Skip to main content
Deno 2 is finally here 🎉️
Learn more
Go to Latest
function useMemo
import { useMemo } from "https://deno.land/x/fathym_atomic_design_kit@v0.0.108-integration/src/src.deps.ts";

Pass a factory function and an array of inputs. useMemo will only recompute the memoized value when one of the inputs has changed. This optimization helps to avoid expensive calculations on every render. If no array is provided, a new value will be computed whenever a new function instance is passed as the first argument.

Parameters

factory: () => T
inputs: Inputs | undefined