Skip to content

Commit

Permalink
Fixed issue (vercel#2804)
Browse files Browse the repository at this point in the history
  • Loading branch information
pencilcheck authored and timneutkens committed Aug 19, 2017
1 parent 66c67c8 commit be134f0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/with-material-ui-next/components/withRoot.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import React, { Component } from 'react'
import { JssProvider } from 'react-jss'
import { withStyles, createStyleSheet, MuiThemeProvider } from 'material-ui/styles'
import { withStyles, MuiThemeProvider } from 'material-ui/styles'
import { getContext } from '../styles/context'

// Apply some reset
const styleSheet = createStyleSheet(theme => ({
const styleSheet = theme => ({
'@global': {
html: {
background: theme.palette.background.default,
Expand All @@ -15,7 +15,7 @@ const styleSheet = createStyleSheet(theme => ({
margin: 0
}
}
}))
})

let AppWrapper = props => props.children

Expand Down

0 comments on commit be134f0

Please sign in to comment.