Files
page-assist/extension/routes/index.tsx

10 lines
281 B
TypeScript
Raw Normal View History

2023-04-09 23:28:52 +05:30
import { Route, Routes } from "react-router-dom"
import Settings from "./settings"
import Home from "./home"
export const Routing = () => (
<Routes>
<Route path="/" element={<Home />} />
<Route path="/settings" element={<Settings />} />
</Routes>
)