From 587e8ef70d27738af9d18735988eab156232629b Mon Sep 17 00:00:00 2001 From: pepper Date: Wed, 20 Jan 2021 00:00:00 -0500 Subject: [PATCH] preparing for redux --- src/components/App.js | 129 +++++++++++++++++++----------------------- 1 file changed, 59 insertions(+), 70 deletions(-) diff --git a/src/components/App.js b/src/components/App.js index 7fd9e5a..ae7414a 100644 --- a/src/components/App.js +++ b/src/components/App.js @@ -1,9 +1,10 @@ import React, { Component } from "react"; import { BrowserRouter as Router, Route, Switch } from "react-router-dom"; -// Store -import { Provider } from "react-redux"; -import store from "../redux/store"; +// Store currently in progress + +// import { Provider } from "react-redux"; +// import store from "../redux/store"; // Routes import Migrations from "./root/Pages/Migrations"; @@ -21,73 +22,61 @@ import Navigation from "./root/Navigation"; class App extends Component { render() { return ( - - - -
-
-
- - - - - - - ( - - )} - /> - ( - - )} - /> - ( - - )} - /> - ( - - )} - /> - ( - - )} - /> - ( - - )} - /> - ( - - )} - /> - -
-
-
-
-
+ // + + +
+ + + + + + + } + /> + } + /> + ( + + )} + /> + ( + + )} + /> + ( + + )} + /> + } + /> + } + /> + +
+
+ //
); } }