UNPKG

@geezee/react-ui

Version:

Modern and minimalist React UI library.

8 lines (7 loc) 229 B
import { RefObject } from 'react'; import { Handles } from './tabs-context'; export default function useImperative(): { getCurrentTab(): string | undefined; setCurrentTab(v: string): void; ref: RefObject<Handles>; };