UNPKG

@shopify/react-html

Version:

A component to render your react app with no static HTML.

7 lines (5 loc) 207 B
import * as React from 'react'; import {renderToStaticMarkup} from 'react-dom/server'; export function render(tree: React.ReactElement<unknown>) { return `<!DOCTYPE html>${renderToStaticMarkup(tree)}`; }