code-challenge-nextjs/pages/_app.tsx
2021-05-11 20:35:45 +01:00

7 lines
140 B
TypeScript

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