frint-react-server

npm

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

  1. app (App): The Root App or Child App instance

Returns

String: HTML output as a string.