SurfSense/surfsense_browser_extension/routes/index.tsx

13 lines
314 B
TypeScript
Raw Normal View History

2025-07-27 12:01:11 -07:00
import { Route, Routes } from "react-router-dom";
2025-04-07 23:47:06 -07:00
2025-07-27 12:01:11 -07:00
import ApiKeyForm from "./pages/ApiKeyForm";
import HomePage from "./pages/HomePage";
import "../tailwind.css";
2025-04-07 23:47:06 -07:00
export const Routing = () => (
2025-07-27 12:01:11 -07:00
<Routes>
<Route path="/" element={<HomePage />} />
<Route path="/login" element={<ApiKeyForm />} />
</Routes>
);