From ef0bff7916eb54a3c909efb69c5bbeaca379cfa8 Mon Sep 17 00:00:00 2001 From: George Lima Date: Wed, 28 Nov 2018 19:03:54 -0300 Subject: [PATCH] feature: wrap root component with ThemeProvider --- app/app.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/app/app.js b/app/app.js index c6dff33..d75c56a 100644 --- a/app/app.js +++ b/app/app.js @@ -3,15 +3,20 @@ import React from 'react'; import { Provider } from 'react-redux'; import { ConnectedRouter } from 'connected-react-router'; +import { ThemeProvider } from 'styled-components'; + import { configureStore, history } from './store/configure'; import { Router } from './router/container'; +import theme from './theme'; const store = configureStore({}); export default () => ( - + + + );