Last active
August 24, 2018 08:59
-
-
Save heapwolf/aca76af72827d63720fdfee25e8827f5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class foo extends Tonic { | |
stylesheet() { | |
return ` | |
.tonic--foo--show { | |
display: block; | |
} | |
` | |
} | |
style () { | |
return { | |
foo: { | |
display: 'none'; | |
} | |
} | |
} | |
render () { | |
return `<div style="foo"></div>` | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment