Server-side React package for Frint
$ npm install --save react react-dom prop-types frint-react frint-react-server
import { renderToString } from 'frint-react-server';
// import your App
import App from './path/to/core';
const app = new App();
const htmlOutput = renderToString(app);
renderToString(app)
app
(App
): The Root App or Child App instanceString
: HTML output as a string.