-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Blake Sellars
committed
Apr 27, 2022
1 parent
3c25180
commit 4e8f5e2
Showing
31 changed files
with
976 additions
and
611 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,30 @@ | ||
import React from 'react'; | ||
import { BrowserRouter as Router, Routes, Route} from 'react-router-dom'; | ||
import './App.css'; | ||
import Navbar from './components/Navbar'; | ||
import Home from './pages/Home' | ||
import About from './pages/about'; | ||
import Stream from './pages/Stream'; | ||
import Links from './pages/Links'; | ||
import Contact from './pages/Contact'; | ||
import Funders from './pages/funders' | ||
import { FooterContainer } from './containers/footer' | ||
import React from "react"; | ||
import { BrowserRouter as Router, Routes, Route } from "react-router-dom"; | ||
import "./App.css"; | ||
import Navbar from "./components/Navbar"; | ||
import Home from "./pages/Home"; | ||
import About from "./pages/about"; | ||
import Stream from "./pages/Stream"; | ||
import Links from "./pages/Links"; | ||
import Contact from "./pages/Contact"; | ||
import Funders from "./pages/funders"; | ||
import { FooterContainer } from "./containers/footer"; | ||
|
||
function App() { | ||
return ( | ||
<Router> | ||
<Navbar /> | ||
<Routes> | ||
<Route path="/" element={<Home />}/> | ||
<Route path="/About" element={<About />}/> | ||
<Route path="/Stream" element={<Stream />}/> | ||
<Route path="/Links" element={<Links />}/> | ||
<Route path="/contactUs" element={<Contact />}/> | ||
<Route path="/funders" element={<Funders />}/> | ||
</Routes> | ||
<FooterContainer /> | ||
<Routes> | ||
<Route path="/" element={<Home />} /> | ||
<Route path="/About" element={<About />} /> | ||
<Route path="/Stream" element={<Stream />} /> | ||
<Route path="/Links" element={<Links />} /> | ||
<Route path="/contactUs" element={<Contact />} /> | ||
<Route path="/funders" element={<Funders />} /> | ||
</Routes> | ||
<FooterContainer /> | ||
</Router> | ||
); | ||
}; | ||
} | ||
|
||
export default App; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.