Repository URL to install this package:
|
Version:
1.3.2 ▾
|
/**
* @see https://github.com/koba04/react-fiber-resources
* @see https://medium.com/@baphemot/whats-new-in-react-16-3-d2c9b7b6193b
* @description can render or hydrate, used by renderClientView & tests
*/
import React from 'react';
import { ComponentType } from 'react';
/**
* @description the actual renderApp function, decision tree for sync vs async
*/
declare function renderApp(App: ComponentType): void | Element | React.Component<any, React.ComponentState, any>;
export { renderApp };