1 2 3 4 5 6 7 8 9 10 11 12 13
// @ts-nocheck import "../src/index.css"; import App from "next/app"; class MyApp extends App { render() { const { Component, pageProps } = this.props; return <Component {...pageProps} />; } } export default MyApp;