projects
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
/**
|
||||
* This file is the entry point for the React app.
|
||||
*/
|
||||
|
||||
import { createRoot } from "react-dom/client";
|
||||
import { App } from "./App";
|
||||
|
||||
const elem = document.getElementById("root")!;
|
||||
createRoot(elem).render(<App />);
|
||||
Reference in New Issue
Block a user