snug-cup/pages/_app.js

8 lines
138 B
JavaScript
Raw Normal View History

2021-02-12 23:35:51 -05:00
import '../styles/globals.css'
2021-02-23 08:06:49 -05:00
function MyApp ({ Component, pageProps }) {
2021-02-12 23:35:51 -05:00
return <Component {...pageProps} />
}
2021-02-23 08:06:49 -05:00
export default MyApp