mirror of
				https://github.com/lingble/twenty.git
				synced 2025-11-03 22:27:57 +00:00 
			
		
		
		
	Rename tabs to Inbox, Contacts, Insights
This commit is contained in:
		@@ -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>
 | 
			
		||||
  );
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user