Skip to content

Instantly share code, notes, and snippets.

@nathanmarks
Created May 27, 2016 12:46
Show Gist options
  • Save nathanmarks/c75c076c38365c8d86e386f6df9ec73f to your computer and use it in GitHub Desktop.
Save nathanmarks/c75c076c38365c8d86e386f6df9ec73f to your computer and use it in GitHub Desktop.
const styleSheet = createStyleSheet('MyComponent', () => {
return {
base: {
margin: 32
},
button: {
'@scope': 'base',
minWidth: 64
}
}
});
const styleSheet = createStyleSheet('MyComponent', () => {
return {
base: {
margin: 32,
'& Button': {
base: { minWidth: 64 }
}
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment