Added the privacy link to the App.jsx

This commit is contained in:
Mathias Wagner 2022-09-30 22:26:08 +02:00
parent 38d95267d6
commit 0f708a86c4

View File

@ -6,6 +6,7 @@ import Coins from "@/pages/Coins";
import Status from "@/pages/Status";
import More from "@/pages/More";
import AboutUs from "@/pages/AboutUs";
import PrivacyPolicy from "@/pages/TextPages/PrivacyPolicy/index.js";
const App = () => (
<BrowserRouter>
@ -18,6 +19,7 @@ const App = () => (
<Route path="/status" element={<Status/>}></Route>
<Route path="/more" element={<More/>}></Route>
<Route path="/about-us" element={<AboutUs/>}></Route>
<Route path="/privacy" element={<PrivacyPolicy/>}></Route>
</Routes>
</BrowserRouter>
)