From 3f01282bccd18c67617da72de2f2e6649e77dd84 Mon Sep 17 00:00:00 2001 From: tparnell Date: Fri, 25 Oct 2019 13:03:31 -0400 Subject: [PATCH] redux should work --- src/App.js | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/src/App.js b/src/App.js index 5dbdd5e..391541f 100644 --- a/src/App.js +++ b/src/App.js @@ -1,14 +1,18 @@ -import React from 'react'; -import Boxes from './boxes/Boxes' -import styles from './App.module.css' +import React from "react"; +import { Provider } from "react-redux"; +import Boxes from "./boxes/Boxes"; +import styles from "./App.module.css"; +import setupStore from "./store/setupStore.js"; function App() { return ( -
- - - -
+ +
+ + + +
+
); }