twenty/front/src/App.tsx

32 lines
724 B
TypeScript
Raw Normal View History

import React from 'react';
import Inbox from './pages/inbox/Inbox';
import Contacts from './pages/Contacts';
import Insights from './pages/Insights';
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() {
const user = {
id: 1,
email: 'charles@twenty.com',
first_name: 'Charles',
last_name: 'Bochet',
};
2023-01-27 14:12:04 +03:00
2022-12-01 17:58:08 +03:00
return (
<div>
{
<AppLayout user={user}>
<Routes>
<Route path="/" element={<Inbox />} />
<Route path="/contacts" element={<Contacts />} />
<Route path="/insights" element={<Insights />} />
</Routes>
</AppLayout>
}
</div>
2022-12-01 17:58:08 +03:00
);
}
export default App;