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

13 lines
303 B
TypeScript
Raw Normal View History

2024-02-01 13:40:44 +05:30
import { Route, Routes } from "react-router-dom"
import { SidepanelChat } from "./sidepanel-chat"
export const Routing = () => <Routes></Routes>
export const SidepanelRouting = () => (
<div className="dark">
<Routes>
<Route path="/" element={<SidepanelChat />} />
</Routes>
</div>
)