Last active
August 13, 2017 02:25
-
-
Save tuxsudo/e6246e06e7250ae8f9427c37de472681 to your computer and use it in GitHub Desktop.
Theme Example
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
import * as theme from "./theme.js"; | |
import { ThemeProvider } from 'styled-components'; | |
export const App = (props) => | |
<ThemeProvider {...props} theme={theme} /> |
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
export const red = "#f00"; | |
export const blue = "#00f"; | |
export const green = "#0f0"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment