mirror of
https://github.com/MODSetter/SurfSense.git
synced 2025-09-02 02:29:08 +00:00
13 lines
No EOL
315 B
TypeScript
13 lines
No EOL
315 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>
|
|
) |