UNPKG

@jigoooo/shared-ui

Version:

A reusable React component library and design system with TypeScript support, built on Vite for seamless integration and optimized performance.

7 lines (6 loc) 217 B
import { RefObject } from 'react'; export declare function useDialogController({ modalRef, isOpen, onClose, }: { modalRef: RefObject<HTMLDivElement | null>; isOpen: boolean; onClose: () => void; }): void;