email-db.ts
M
App.tsx
App.css
util.ts
Thariq Shihipar, last month | 1 author (Thariq Shihipar)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
2
3
4
5
6
7
8
9
10
11
12
13
14
import { MemoryRouter as Router, Routes, Route } from 'react-router-dom';import ChatInterface from './components/ChatInterface';import './App.css';export default function App() { return ( <Router> <Routes> <Route path="/" element={<ChatInterface />} /> </Routes> </Router> );}