1
0
Fork 0
mirror of https://github.com/binwiederhier/ntfy.git synced 2024-11-07 12:24:22 +01:00
ntfy/web/src/index.jsx

7 lines
196 B
React
Raw Normal View History

2023-05-23 21:13:01 +02:00
import * as React from "react";
import { createRoot } from "react-dom/client";
import App from "./components/App";
2022-02-18 15:49:51 +01:00
2023-05-23 21:13:01 +02:00
const root = createRoot(document.querySelector("#root"));
2022-04-08 02:31:24 +02:00
root.render(<App />);