aboutsummaryrefslogtreecommitdiff
path: root/bench/hot-module-reloading/css-stress-test/pages/_app.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'bench/hot-module-reloading/css-stress-test/pages/_app.tsx')
-rw-r--r--bench/hot-module-reloading/css-stress-test/pages/_app.tsx12
1 files changed, 12 insertions, 0 deletions
diff --git a/bench/hot-module-reloading/css-stress-test/pages/_app.tsx b/bench/hot-module-reloading/css-stress-test/pages/_app.tsx
new file mode 100644
index 000000000..43d6a776a
--- /dev/null
+++ b/bench/hot-module-reloading/css-stress-test/pages/_app.tsx
@@ -0,0 +1,12 @@
+import "../src/index.css";
+
+import App from "next/app";
+
+class MyApp extends App {
+ render() {
+ const { Component, pageProps } = this.props;
+ return <Component {...pageProps} />;
+ }
+}
+
+export default MyApp;