UNPKG

react-torch

Version:

A lib to server-side render with react.

11 lines (10 loc) 318 B
import React from 'react'; import { ReactModelArg } from './preload'; import type { ReactModel } from './createReactModel'; export declare type ReactModels = { [key: string]: ReactModel; }; export declare type ProviderProps = { list: ReactModelArg[]; }; export declare const Provider: React.FC<ProviderProps>;