Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/netzo/deps/preact/hooks.ts>useMemo

Deno-powered framework for building business web apps
Go to Latest
function useMemo
import { useMemo } from "https://deno.land/x/netzo@0.3.91/deps/preact/hooks.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