From 5db15b6ec7cd41cc15214f4448b064f4dd11f974 Mon Sep 17 00:00:00 2001 From: Jarred Sumner Date: Fri, 20 Aug 2021 13:17:57 -0700 Subject: demos -> examples Former-commit-id: 19a5d395bd41b0a0b854cdf749eb96149f91cbe1 --- examples/react-fast-refresh-test/src/index.tsx | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 examples/react-fast-refresh-test/src/index.tsx (limited to 'examples/react-fast-refresh-test/src/index.tsx') diff --git a/examples/react-fast-refresh-test/src/index.tsx b/examples/react-fast-refresh-test/src/index.tsx new file mode 100644 index 000000000..348bd80f2 --- /dev/null +++ b/examples/react-fast-refresh-test/src/index.tsx @@ -0,0 +1,15 @@ +import ReactDOM from "react-dom"; +import React from "react"; +import { App } from "./components/app"; +import classNames from "classnames"; + +function startReact() { + ReactDOM.render(, document.querySelector("#reactroot")); +} + +globalThis.addEventListener("DOMContentLoaded", () => { + startReact(); +}); +startReact(); + +export { App }; -- cgit v1.2.3