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( <> Next Template Hello World ! ) } }