Co-authored-by: Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com> Signed-off-by: Émile Ré <nemile.re@gmail.com> Signed-off-by: Émile Ré <emile@probo.com>
7 lines
143 B
TypeScript
7 lines
143 B
TypeScript
import { createRoot } from "react-dom/client";
|
|
import { App } from "./App";
|
|
|
|
createRoot(document.getElementById("root")!).render(
|
|
<App />
|
|
);
|