UNPKG

chattr

Version:

A chatgpt chatbot component library for nextjs.

12 lines (11 loc) 262 B
/** * Manages the open and closed states of the chattr UI. * * @returns An object containing the current state and a function to toggle it. * * @default isOpen false */ export default function useChattr(): { isOpen: boolean; toggle: () => void; };