Skip to content

Instantly share code, notes, and snippets.

@apaleslimghost
Created November 6, 2017 15:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save apaleslimghost/437ee7889a358d863093ebd46bd22115 to your computer and use it in GitHub Desktop.
Save apaleslimghost/437ee7889a358d863093ebd46bd22115 to your computer and use it in GitHub Desktop.
const renderToString = require('preact-render-to-string');
module.exports = tree => Array.isArray(tree)
? tree.map(renderToString).join('')
: renderToString(tree);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment