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 ( -
- - - -
+ +
+ + + +
+
); }