11 lines
199 B
TypeScript
11 lines
199 B
TypeScript
import React from "react";
|
|
import App from "./App";
|
|
import { createRoot } from "react-dom/client";
|
|
|
|
const root = createRoot(document.getElementById("root")!);
|
|
root.render(
|
|
<>
|
|
<App />
|
|
</>,
|
|
);
|