From 435fd5bdf99d6b75c0961739d83507baf5c8c97c Mon Sep 17 00:00:00 2001 From: "Sungjoo(Dennis) Hwang" <48212469+Denny-Hwang@users.noreply.github.com> Date: Thu, 6 Apr 2023 06:31:55 +0900 Subject: [PATCH] Create _app.tsx --- ko-pages/_app.tsx | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 ko-pages/_app.tsx diff --git a/ko-pages/_app.tsx b/ko-pages/_app.tsx new file mode 100644 index 0000000..270c497 --- /dev/null +++ b/ko-pages/_app.tsx @@ -0,0 +1,23 @@ +import type { AppProps } from 'next/app'; +import Script from 'next/script'; +import { Analytics } from '@vercel/analytics/react'; + +function MyApp({ Component, pageProps }: AppProps) { + return ( + <> + + + + + + ); +} + +export default MyApp;