Skip to content

Instantly share code, notes, and snippets.

@mgmgpyaesonewin
Created February 4, 2019 09:14
Show Gist options
  • Save mgmgpyaesonewin/9ae8bd35f982c294cd6dcb1a1af6a5fc to your computer and use it in GitHub Desktop.
Save mgmgpyaesonewin/9ae8bd35f982c294cd6dcb1a1af6a5fc to your computer and use it in GitHub Desktop.
function renderFullPage(html, preloadedState) {
return `
<!doctype html>
<html>
<head>
<title>Redux Universal Example</title>
</head>
<body>
<div id="root">${html}</div>
<script>
window.__PRELOADED_STATE__ = ${JSON.stringify(preloadedState)}
</script>
<script src="/static/bundle.js"></script>
</body>
</html>
`
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment