Skip to content

Commit e46d09f

Browse files
committed
feat: Update _app.tsx
1 parent 0bb5e59 commit e46d09f

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

pages/_app.tsx

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,13 @@
1-
export {};
1+
import { Head } from '@/components/Head';;
2+
import type { AppProps } from 'next/app';
3+
import { GlobalStyle } from '@/styles/globals';
4+
5+
export default function App({ Component, pageProps }: AppProps) {
6+
return (
7+
<>
8+
<GlobalStyle />
9+
<Head />
10+
<Component {...pageProps} />
11+
</>
12+
)
13+
}

0 commit comments

Comments
 (0)