Skip to content

Instantly share code, notes, and snippets.

@sergiodxa
Last active August 29, 2015 14:22
Show Gist options
  • Save sergiodxa/f5a6958cb706b74675ad to your computer and use it in GitHub Desktop.
Save sergiodxa/f5a6958cb706b74675ad to your computer and use it in GitHub Desktop.
Renderizar React.js a un string (útil para renderizar en el servidor)
import React from 'react';
import Home from './views/home';
const html = React.renderToString(<Home />);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment