mirror of
https://github.com/cline/cline.git
synced 2026-09-19 02:05:44 +08:00
13 lines
339 B
TypeScript
13 lines
339 B
TypeScript
import { StrictMode } from "react"
|
|
import { createRoot } from "react-dom/client"
|
|
import { PostHogProvider } from "posthog-js/react"
|
|
import "./index.css"
|
|
import App from "./App.tsx"
|
|
import "../../node_modules/@vscode/codicons/dist/codicon.css"
|
|
|
|
createRoot(document.getElementById("root")!).render(
|
|
<StrictMode>
|
|
<App />
|
|
</StrictMode>,
|
|
)
|