You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
459 B
20 lines
459 B
import React from "react"
|
|
import { createRoot } from "react-dom/client"
|
|
import App from "src/components/app"
|
|
|
|
declare var window: any
|
|
// This is used to determine if the react client is built.
|
|
window.Tailscale = true
|
|
|
|
const rootEl = document.createElement("div")
|
|
rootEl.id = "app-root"
|
|
rootEl.classList.add("relative", "z-0")
|
|
document.body.append(rootEl)
|
|
|
|
const root = createRoot(rootEl)
|
|
|
|
root.render(
|
|
<React.StrictMode>
|
|
<App />
|
|
</React.StrictMode>
|
|
)
|
|
|