Utilities Overview

The retend-utils package provides a collection of ready-made hooks and components for common UI tasks. These cover reactive data binding, environment tracking, layout animations, and more.

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';

Refer to the Utility Hooks and Utility Components pages for full API documentation.