moonstream/frontend/pages/_app.tsx

8 wiersze
187 B
TypeScript
Czysty Zwykły widok Historia

2021-07-01 23:13:35 +00:00
import '../styles/globals.css'
import type { AppProps } from 'next/app'
function MyApp({ Component, pageProps }: AppProps) {
return <Component {...pageProps} />
}
export default MyApp