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