diff options
Diffstat (limited to 'demos/react-fast-refresh-test/src/index.tsx')
-rw-r--r-- | demos/react-fast-refresh-test/src/index.tsx | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/demos/react-fast-refresh-test/src/index.tsx b/demos/react-fast-refresh-test/src/index.tsx deleted file mode 100644 index 348bd80f2..000000000 --- a/demos/react-fast-refresh-test/src/index.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import ReactDOM from "react-dom"; -import React from "react"; -import { App } from "./components/app"; -import classNames from "classnames"; - -function startReact() { - ReactDOM.render(<App />, document.querySelector("#reactroot")); -} - -globalThis.addEventListener("DOMContentLoaded", () => { - startReact(); -}); -startReact(); - -export { App }; |