UNPKG

@explita/daily-toolset-components

Version:

A lightweight and versatile collection of TypeScript utility functions and form components, inspired by ShadCN UI, designed for seamless everyday development. Enhance your Node.js, React, and Next.js projects with a well-structured suite of helpers for st

6 lines (5 loc) 158 B
export declare function useField(name: string | undefined): { fieldValue: any; fieldError: string | undefined; setValue: (value: any) => void; };