v2 initial commit
This commit is contained in:
12
src/routes/index.tsx
Normal file
12
src/routes/index.tsx
Normal file
@@ -0,0 +1,12 @@
|
||||
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>
|
||||
)
|
||||
Reference in New Issue
Block a user