void/pages/_app.tsx
2022-07-30 23:59:56 +02:00

11 lines
No EOL
239 B
TypeScript

import React from 'react'
// import { AppProps } from 'next/app'
// import 'tailwindcss/tailwind.css'
import '../styles/main.sass'
function MyApp({ Component, pageProps }) {
return <Component {...pageProps} />
}
export default MyApp