mirror of
https://github.com/binwiederhier/ntfy.git
synced 2025-07-14 14:56:17 +02:00
6 lines
196 B
JavaScript
6 lines
196 B
JavaScript
import * as React from "react";
|
|
import { createRoot } from "react-dom/client";
|
|
import App from "./components/App";
|
|
|
|
const root = createRoot(document.querySelector("#root"));
|
|
root.render(<App />);
|