UNPKG

@shopify/react-html

Version:

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

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