11 lines
No EOL
239 B
TypeScript
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 |