jackmerrill.com/pages/_app.tsx
2021-03-31 00:27:36 -05:00

11 lines
213 B
TypeScript

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