Portfolio/pages/_app.js

8 lines
137 B
JavaScript
Raw Permalink Normal View History

2021-01-11 08:28:05 -08:00
import '../styles/globals.css'
function MyApp({ Component, pageProps }) {
return <Component {...pageProps} />
}
export default MyApp