Last active
March 3, 2018 01:11
-
-
Save kireerik/c30a2d9bb2af394872b1e5774bc3a9c9 to your computer and use it in GitHub Desktop.
Material-UI: Get started (Fast!) ⚡ React 16+
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import {renderToString} from 'react-dom/server' | |
import {ServerStyleSheet} from 'styled-components' | |
import Application from './application/Main' | |
const sheet = new ServerStyleSheet() | |
, html = renderToString(sheet.collectStyles(<Application />)) | |
, css = sheet.getStyleTags() | |
// server response to send: | |
`<!DOCTYPE HTML> | |
<html lang="en"> | |
<head>` + css + `</head> | |
<body> | |
<div id="root">` + html + `</div> | |
</body> | |
</html>` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment