jackmerrill.com/pages/_app.tsx

11 lines
213 B
TypeScript
Raw Normal View History

2021-03-30 22:27:36 -07:00
import React from 'react'
import { AppProps } from 'next/app'
import 'tailwindcss/tailwind.css'
function MyApp({ Component, pageProps }: AppProps) {
return <Component {...pageProps} />
}
export default MyApp