2024-01-21 17:54:00 -05:00
|
|
|
import React from "react";
|
2024-01-22 19:41:07 -05:00
|
|
|
import App from "./App";
|
2024-01-27 14:30:15 -05:00
|
|
|
import { createRoot } from "react-dom/client";
|
2024-01-21 17:54:00 -05:00
|
|
|
|
2024-01-27 14:30:15 -05:00
|
|
|
const root = createRoot(document.getElementById("root")!);
|
|
|
|
root.render(
|
2024-01-27 13:06:05 -05:00
|
|
|
<>
|
|
|
|
<App />
|
|
|
|
</>,
|
|
|
|
);
|