frint-react-server
v5.7.2
Published
Server-side React package for Frint
Downloads
455
Keywords
Readme
frint-react-server
Server-side React package for Frint
Guide
Installation
$ npm install --save react react-dom prop-types frint-react frint-react-server
Usage
import { renderToString } from 'frint-react-server';
// import your App
import App from './path/to/core';
const app = new App();
const htmlOutput = renderToString(app);
API
renderToString
renderToString(app)
Arguments
app
(App
): The Root App or Child App instance
Returns
String
: HTML output as a string.