Skip to content

Commit

Permalink
Fix createGlobalStyle in Basic Example
Browse files Browse the repository at this point in the history
createGlobalStyle should not be invoked as a function
  • Loading branch information
jayhxmo committed Mar 27, 2019
1 parent 25276b9 commit 408704c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/basic/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ import {
lineHeight,
} from 'styled-system'

const Style = createGlobalStyle(`
const Style = createGlobalStyle`
* { box-sizing: border-box; }
body{ margin:0; }
`)
`

const theme = {
fontSizes: [
Expand Down

0 comments on commit 408704c

Please sign in to comment.