import App from 'next/app' import Head from 'next/head' import React from 'react' import Layout from '../components/Layout' import config from '../config' import '../styl/styl.styl' class MyApp extends App { public render() { const { Component, pageProps } = this.props return( ) } } export default MyApp