UNPKG

@jay-js/ui

Version:

A library of UI components for Jay JS with Tailwind CSS and daisyUI.

5 lines (4 loc) 110 B
export interface IRefObject<T> { current: T | null; } export declare function useRef<T>(): IRefObject<T>;