2022-12-02 14:03:29 +03:00
|
|
|
import React from 'react';
|
2022-12-05 23:47:11 +03:00
|
|
|
import Inbox from './pages/inbox/Inbox';
|
|
|
|
import Contacts from './pages/Contacts';
|
|
|
|
import Insights from './pages/Insights';
|
2022-12-05 00:59:30 +03:00
|
|
|
import AppLayout from './layout/AppLayout';
|
2022-12-02 14:39:15 +03:00
|
|
|
import { Routes, Route } from 'react-router-dom';
|
2022-12-01 17:58:08 +03:00
|
|
|
|
|
|
|
function App() {
|
|
|
|
return (
|
2022-12-05 00:59:30 +03:00
|
|
|
<AppLayout>
|
2022-12-02 14:39:15 +03:00
|
|
|
<Routes>
|
2022-12-05 23:47:11 +03:00
|
|
|
<Route path="/" element={<Inbox />} />
|
|
|
|
<Route path="/contacts" element={<Contacts />} />
|
|
|
|
<Route path="/insights" element={<Insights />} />
|
2022-12-02 14:39:15 +03:00
|
|
|
</Routes>
|
2022-12-05 00:59:30 +03:00
|
|
|
</AppLayout>
|
2022-12-01 17:58:08 +03:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export default App;
|