Last active
December 19, 2016 12:53
-
-
Save egoist/603f15bea94d94ca0a673e8c5469fc88 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
const color = 'red' | |
const App = styled.div`{ | |
color: ${color}; | |
}` | |
App.innerHTML = 'hello world' | |
document.body.appendChild(App) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment