Files
link-free/src/pages/_app.tsx

6 lines
148 B
TypeScript
Raw Normal View History

2021-12-10 20:54:28 -03:00
import type { AppProps } from 'next/app'
export default function App({ Component, pageProps }: AppProps) {
return <Component {...pageProps} />
}