Utilities Overview

The retend-utils package provides hooks and components for reactive data binding, environment tracking, layout animations, and other UI tasks.

Installation

Install retend-utils alongside the core framework:

npm install retend retend-web retend-utils

Import Paths

Hooks and components are available from separate entry points:

import { useWindowSize, useLocalStorage } from 'retend-utils/hooks';
import { Input, FluidList } from 'retend-utils/components';

See Utility Hooks and Utility Components for API documentation.