1
0
mirror of https://github.com/kremalicious/ipfs.git synced 2024-06-10 11:25:31 +02:00
ipfs/src/pages/_app.tsx

17 lines
331 B
TypeScript
Raw Normal View History

import '../styles/global.css'
import App from 'next/app'
import React from 'react'
import Typekit from '../components/Typekit'
export default class MyApp extends App {
render() {
const { Component, pageProps } = this.props
return (
<>
<Typekit />
<Component {...pageProps} />
</>
)
}
}