From 647a222fca76e7a3953812688573838b60379190 Mon Sep 17 00:00:00 2001 From: Camerin Date: Sun, 19 Sep 2021 21:30:21 -0400 Subject: [PATCH] Remove history.js --- src/components/App.js | 3 +-- src/history.js | 3 --- 2 files changed, 1 insertion(+), 5 deletions(-) delete mode 100644 src/history.js diff --git a/src/components/App.js b/src/components/App.js index 50161f3..79a6f7a 100644 --- a/src/components/App.js +++ b/src/components/App.js @@ -1,14 +1,13 @@ import React from 'react'; import { BrowserRouter, Route, Switch } from 'react-router-dom'; import Navigation from './Navigation'; -import history from '../history'; import Home from './Home'; import Github from './Github'; const App = (props) => { return (
- +
diff --git a/src/history.js b/src/history.js deleted file mode 100644 index 9937105..0000000 --- a/src/history.js +++ /dev/null @@ -1,3 +0,0 @@ -import { createBrowserHistory } from 'history'; - -export default createBrowserHistory();