mirror of
https://github.com/Myzel394/kleckrelay-website.git
synced 2025-06-20 00:05:26 +02:00
9 lines
183 B
TypeScript
Executable File
9 lines
183 B
TypeScript
Executable File
import React from "react"
|
|
import ReactDOM from "react-dom/client"
|
|
|
|
import App from "~/App"
|
|
|
|
ReactDOM.createRoot(document.getElementById("root") as HTMLDivElement).render(
|
|
<App />,
|
|
)
|