mirror of
https://github.com/Aviortheking/next-template.git
synced 2025-04-23 19:12:10 +00:00
22 lines
356 B
TypeScript
22 lines
356 B
TypeScript
import App from 'next/app'
|
|
import Head from 'next/head'
|
|
import React from 'react'
|
|
|
|
import '../styl/index.styl'
|
|
|
|
export default class Index extends App {
|
|
|
|
public render() {
|
|
const { Component, pageProps } = this.props
|
|
|
|
return(
|
|
<>
|
|
<Head>
|
|
<title>Next Template Hello World !</title>
|
|
</Head>
|
|
<Component {...pageProps} />
|
|
</>
|
|
)
|
|
}
|
|
}
|