amirmoghi3.ir/pages/_app.tsx

9 lines
188 B
TypeScript
Raw Normal View History

2022-02-19 14:44:11 +03:30
import '../styles/globals.css'
import type { AppProps } from 'next/app'
function MyApp({ Component, pageProps }: AppProps) {
return <Component {...pageProps} />
}
export default MyApp