Guest User

Untitled

a guest
Feb 19th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. const renderApp = () => {
  2. const html = renderToString(React.createFactory(App)({ welcome: 'Hello' }))
  3. return `
  4. <!DOCTYPE html>
  5. <html>
  6. <head>
  7. <title>Server rendered app</title>
  8. </head>
  9. <body>${html}</body>
  10. </html>
  11. `
  12. }
Add Comment
Please, Sign In to add comment