ipfs/src/pages/_app.tsx

14 lines
301 B
TypeScript
Raw Normal View History

import '../styles/global.css'
import React from 'react'
2021-09-12 17:00:43 +02:00
import { AppProps } from 'next/app'
import Typekit from '../components/Typekit'
2021-09-12 17:00:43 +02:00
export default function App({ Component, pageProps }: AppProps): JSX.Element {
return (
<>
<Typekit />
<Component {...pageProps} />
</>
)
}