WhiteNightsAdminPanel/src/index.tsx
Alexander Lazarenko cf2a116ecb
All checks were successful
release-tag / release-image (push) Successful in 2m17s
Latest version (#12)
Co-authored-by: itoshi <kkzemeow@gmail.com>
Co-authored-by: Spynder <19329095+Spynder@users.noreply.github.com>
Reviewed-on: #12
Co-authored-by: Alexander Lazarenko <kerblif@unprism.ru>
Co-committed-by: Alexander Lazarenko <kerblif@unprism.ru>
2025-05-29 10:12:00 +00:00

10 lines
223 B
TypeScript

import { createRoot } from "react-dom/client";
import App from "./App";
import "./globals.css";
const container = document.getElementById("root") as HTMLElement;
const root = createRoot(container);
root.render(<App />);