ntfy/web/src/index.jsx

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
250 B
React
Raw Permalink Normal View History

2022-02-19 03:49:51 +13:00
import * as React from "react";
2022-04-08 12:31:24 +12:00
import { createRoot } from "react-dom/client";
2022-02-21 10:55:55 +13:00
import App from "./components/App";
2023-06-30 18:59:20 +12:00
import registerSW from "./registerSW";
2022-02-19 03:49:51 +13:00
2023-06-30 18:59:20 +12:00
registerSW();
2023-06-30 01:07:18 +12:00
2022-04-08 12:31:24 +12:00
const root = createRoot(document.querySelector("#root"));
root.render(<App />);