This repository has been archived on 2025-10-10. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
hello.kei/pages/_app.tsx
Guz ec8c9765b5 new initial commit
moved from nuxtjs to nextjs
2022-08-06 13:14:43 -03:00

9 lines
188 B
TypeScript

import '../styles/globals.css'
import type { AppProps } from 'next/app'
function MyApp({ Component, pageProps }: AppProps) {
return <Component {...pageProps} />
}
export default MyApp