Portfolio-v3/pages/_app.js
Robert S 8a5c48ba3d
Update website
Now made with Next.js and I gave the design a refresh.
2021-10-12 22:27:06 +02:00

8 lines
174 B
JavaScript

// import 'tailwindcss/tailwind.css'
import '../styles/globals.css'
function MyApp({ Component, pageProps }) {
return <Component {...pageProps} />
}
export default MyApp