Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/framework / dist / client / renderApp.d.ts
Size: Mime:
/**
 * @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 };