fix(docs): add proper Typescript types to _app.tsx to satisfy build checker

This commit is contained in:
dyzulk
2026-01-08 18:42:57 +07:00
parent 72b321fc3b
commit caae45eefb

View File

@@ -1,5 +1,6 @@
import '../styles/globals.css'
import type { AppProps } from 'next/app'
export default function App({ Component, pageProps }) {
export default function App({ Component, pageProps }: AppProps) {
return <Component {...pageProps} />
}