Skip to content

Commit

Permalink
prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
mnajdova committed Jul 19, 2020
1 parent f2c98e0 commit 09bce37
Showing 1 changed file with 15 additions and 12 deletions.
27 changes: 15 additions & 12 deletions packages/material-ui-system/src/GlobalCss/GlobalCss.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,20 @@ import typography from './typography';
import positions from './positions';
import displays from './displays';

const GlobalCss = withStyles((theme) => {
return {
'@global': {
...spacings(theme),
...colors(theme),
...elevations(theme),
...typography(theme),
...positions(theme),
...displays(theme),
},
};
}, { index: 0 })(() => null);
const GlobalCss = withStyles(
(theme) => {
return {
'@global': {
...spacings(theme),
...colors(theme),
...elevations(theme),
...typography(theme),
...positions(theme),
...displays(theme),
},
};
},
{ index: 0 },
)(() => null);

export default GlobalCss;

0 comments on commit 09bce37

Please sign in to comment.