mocksaml/pages/_app.tsx

11 lines
198 B
TypeScript
Raw Normal View History

2022-01-08 15:11:13 +00:00
import '../styles/globals.css'
import type { AppProps } from 'next/app'
function MyApp({ Component, pageProps }: AppProps) {
2022-02-17 06:05:50 +00:00
return (
2022-02-18 04:07:27 +00:00
<Component {...pageProps} />
2022-02-17 06:05:50 +00:00
)
2022-01-08 15:11:13 +00:00
}
export default MyApp