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/css-stress-test/src/index.tsx | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 examples/css-stress-test/src/index.tsx (limited to 'examples/css-stress-test/src/index.tsx') diff --git a/examples/css-stress-test/src/index.tsx b/examples/css-stress-test/src/index.tsx new file mode 100644 index 000000000..4c288c3cc --- /dev/null +++ b/examples/css-stress-test/src/index.tsx @@ -0,0 +1,25 @@ +import { Main } from "./main"; +import classNames from "classnames"; +import ReactDOM from "react-dom"; + +const Base = ({}) => { + const name = + typeof location !== "undefined" + ? decodeURIComponent(location.search.substring(1)) + : null; + return
; +}; + +function startReact() { + ReactDOM.hydrate(, document.querySelector("#reactroot")); +} + +if (typeof window !== "undefined") { + globalThis.addEventListener("DOMContentLoaded", () => { + startReact(); + }); + + startReact(); +} + +export { Base }; -- cgit v1.2.3