Spaces:
Sleeping
Sleeping
File size: 206 Bytes
b369d17 |
1 2 3 4 5 6 7 8 9 10 11 |
import '../styles/globals.css'
import type { AppProps } from 'next/app'
export default function App({ Component, pageProps }: AppProps) {
return (
<>
<Component {...pageProps} />
</>
)
}
|