redux should work

This commit is contained in:
tparnell
2019-10-25 13:03:31 -04:00
parent 998cf45a97
commit 3f01282bcc

View File

@@ -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 (
<div className={styles.grid}>
<Boxes sectionName={'What Went Well'} />
<Boxes sectionName={'What Could Be Better'} />
<Boxes sectionName={'Questions'} />
</div>
<Provider store={setupStore()}>
<div className={styles.grid}>
<Boxes sectionName={"What Went Well"} />
<Boxes sectionName={"What Could Be Better"} />
<Boxes sectionName={"Questions"} />
</div>
</Provider>
);
}