code-challenge-nextjs/pages/_app.tsx

8 lines
140 B
TypeScript
Raw Permalink Normal View History

2021-05-11 20:35:45 +01:00
import 'tailwindcss/tailwind.css'
function MyApp({ Component, pageProps }) {
return <Component {...pageProps} />
}
export default MyApp