mirror of
https://github.com/MODSetter/SurfSense.git
synced 2025-09-01 18:19:08 +00:00
12 lines
314 B
TypeScript
12 lines
314 B
TypeScript
import { Route, Routes } from "react-router-dom";
|
|
|
|
import ApiKeyForm from "./pages/ApiKeyForm";
|
|
import HomePage from "./pages/HomePage";
|
|
import "../tailwind.css";
|
|
|
|
export const Routing = () => (
|
|
<Routes>
|
|
<Route path="/" element={<HomePage />} />
|
|
<Route path="/login" element={<ApiKeyForm />} />
|
|
</Routes>
|
|
);
|