We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72edd59 commit ccc9ff2Copy full SHA for ccc9ff2
examples/with-material-ui-next/components/withRoot.js
@@ -1,10 +1,10 @@
1
import React, { Component } from 'react'
2
import { JssProvider } from 'react-jss'
3
-import { withStyles, createStyleSheet, MuiThemeProvider } from 'material-ui/styles'
+import { withStyles, MuiThemeProvider } from 'material-ui/styles'
4
import { getContext } from '../styles/context'
5
6
// Apply some reset
7
-const styleSheet = createStyleSheet(theme => ({
+const styleSheet = theme => ({
8
'@global': {
9
html: {
10
background: theme.palette.background.default,
@@ -15,7 +15,7 @@ const styleSheet = createStyleSheet(theme => ({
15
margin: 0
16
}
17
18
-}))
+})
19
20
let AppWrapper = props => props.children
21
0 commit comments