mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
Co-authored-by: roomote[bot] <219738659+roomote[bot]@users.noreply.github.com> Co-authored-by: daniel-lxs <ricciodaniel98@gmail.com>
12 lines
357 B
TypeScript
12 lines
357 B
TypeScript
import { StrictMode } from "react"
|
|
import { createRoot } from "react-dom/client"
|
|
|
|
import "./index.css"
|
|
import BrowserSessionPanel from "./components/browser-session/BrowserSessionPanel"
|
|
import "../node_modules/@vscode/codicons/dist/codicon.css"
|
|
|
|
createRoot(document.getElementById("root")!).render(
|
|
<StrictMode>
|
|
<BrowserSessionPanel />
|
|
</StrictMode>,
|
|
)
|