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) 216 B
import { RefObject } from 'react'; export declare function useModalController({ modalRef, isOpen, onClose, }: { modalRef: RefObject<HTMLDivElement | null>; isOpen: boolean; onClose: () => void; }): void;