1 2 3 4 5 6 7 8 9 10 11 12 13
import React from 'react' import { ThemeProvider } from 'styled-components' const theme = { colors: { background: '#faf9f5', border: '#565656', text: '#111111', error: '#ee1111', }, } export default ({ children }) => <ThemeProvider theme={theme}>{children}</ThemeProvider>