UNPKG

@shopify/react-html

Version:

A component to render your React app with no static HTML

8 lines (5 loc) 172 B
import { renderToStaticMarkup } from 'react-dom/server'; function render(tree) { return `<!DOCTYPE html>${renderToStaticMarkup(tree)}`; } export { render as default };