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"; // Routes import Migrations from "./root/Pages/Migrations"; import GenericList from "./root/Pages/GenericList"; import Reports from "./root/Pages/Reports"; import Book from "./root/Pages/Book"; import IDSingle from "./root/Pages/IDSingle"; // Components import Home from "./root/Home"; import Navigation from "./root/Navigation"; // Main app component, react-router comes from here, // and links to all of the sub pages class App extends Component { render() { return (
( )} /> ( )} /> ( )} /> ( )} /> ( )} /> ( )} /> ( )} />
); } } export default App;