unstated-enhancers
Version:
Unstated tools for state management
10 lines (9 loc) • 302 B
TypeScript
import * as React from 'react';
import { Container } from 'unstated';
declare type SubscribeProps = {
loading: React.ReactNode;
to: Container<any>[];
children(...instances: Container<any>[]): React.ReactNode;
};
export default function SubscribeGate(props: SubscribeProps): any;
export {};