UNPKG

jotai

Version:

👻 Next gen state management that will spook you

8 lines (7 loc) • 258 B
import React from 'react'; import { Scope } from './types'; export declare const useBridge: (scope?: string | number | symbol | undefined) => [any, any]; export declare const Bridge: React.FC<{ value: ReturnType<typeof useBridge>; scope?: Scope; }>;