aboutsummaryrefslogtreecommitdiff
path: root/bench/hot-module-reloading/css-stress-test/pages/index.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'bench/hot-module-reloading/css-stress-test/pages/index.tsx')
-rw-r--r--bench/hot-module-reloading/css-stress-test/pages/index.tsx12
1 files changed, 12 insertions, 0 deletions
diff --git a/bench/hot-module-reloading/css-stress-test/pages/index.tsx b/bench/hot-module-reloading/css-stress-test/pages/index.tsx
new file mode 100644
index 000000000..3ef84ffe5
--- /dev/null
+++ b/bench/hot-module-reloading/css-stress-test/pages/index.tsx
@@ -0,0 +1,12 @@
+import { Main } from "src/main";
+export function IndexPage() {
+ return (
+ <Main
+ productName={
+ typeof location !== "undefined" ? location.search.substring(1) : ""
+ }
+ />
+ );
+}
+
+export default IndexPage;