UNPKG

r-magnet

Version:

A state management library for React

10 lines (9 loc) 243 B
import React from 'react'; import { Store } from '../typeHelper'; interface StoreProps { store: Store; context?: React.Context<Store<any>>; children?: any; } export declare const Provider: React.FC<StoreProps>; export {};