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