aboutsummaryrefslogtreecommitdiff
path: root/benchmark/frontend/src/pages/_app.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/frontend/src/pages/_app.tsx')
-rw-r--r--benchmark/frontend/src/pages/_app.tsx9
1 files changed, 9 insertions, 0 deletions
diff --git a/benchmark/frontend/src/pages/_app.tsx b/benchmark/frontend/src/pages/_app.tsx
new file mode 100644
index 000000000..605d515fa
--- /dev/null
+++ b/benchmark/frontend/src/pages/_app.tsx
@@ -0,0 +1,9 @@
+import { type AppType } from "next/dist/shared/lib/utils";
+import "~/styles/globals.css";
+import "@fortawesome/fontawesome-svg-core/styles.css";
+
+const MyApp: AppType = ({ Component, pageProps }) => {
+ return <Component {...pageProps} />;
+};
+
+export default MyApp;