Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Go to Latest
function useMemo
import { useMemo } from "https://deno.land/x/fathym_atomic_design_kit@v0.0.114-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