mirror of
https://github.com/freedbygrace/ActiveDirectoryManager.git
synced 2026-07-27 20:39:25 +00:00
efde82d7b6
Replit-Commit-Author: Agent Replit-Commit-Session-Id: 705f2157-ef97-4fbd-89e4-8c7f2ecaea90 Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/7ed01c5f-a82d-405a-b728-b2e3d127c60c/90f95cc6-6d9a-47fe-b1c1-0b0806153542.jpg
7 lines
175 B
TypeScript
7 lines
175 B
TypeScript
import { createRoot } from "react-dom/client";
|
|
import App from "./App";
|
|
import "./index.css";
|
|
|
|
// Render the app
|
|
createRoot(document.getElementById("root")!).render(<App />);
|