badgen.net/pages/_app.tsx

7 wiersze
179 B
TypeScript
Czysty Zwykły widok Historia

2022-12-31 06:29:41 +00:00
import '../styles/globals.css'
import type { AppProps } from 'next/app'
2018-09-06 09:54:28 +00:00
2022-12-31 06:29:41 +00:00
export default function App({ Component, pageProps }: AppProps) {
return <Component {...pageProps} />
2018-09-06 09:54:28 +00:00
}