Rename tabs to Inbox, Contacts, Insights

This commit is contained in:
Charles Bochet
2022-12-05 21:47:11 +01:00
parent dcfc4c9e45
commit 92267701ff
20 changed files with 52 additions and 52 deletions

View File

@@ -1,7 +1,7 @@
import React from 'react';
import Tasks from './pages/tasks/Tasks';
import History from './pages/History';
import Performances from './pages/Performances';
import Inbox from './pages/inbox/Inbox';
import Contacts from './pages/Contacts';
import Insights from './pages/Insights';
import AppLayout from './layout/AppLayout';
import { Routes, Route } from 'react-router-dom';
@@ -9,9 +9,9 @@ function App() {
return (
<AppLayout>
<Routes>
<Route path="/" element={<Tasks />} />
<Route path="/history" element={<History />} />
<Route path="/performances" element={<Performances />} />
<Route path="/" element={<Inbox />} />
<Route path="/contacts" element={<Contacts />} />
<Route path="/insights" element={<Insights />} />
</Routes>
</AppLayout>
);