1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
import App, { Container } from 'next/app'; import Page from '../components/Page'; class MyApp extends App { render() { const { Component } = this.props; return ( <Container> <Page> <Component /> </Page> </Container> ); } } export default MyApp;