blob: 43d6a776adebdecc65d8ab7e030743a5400f7652 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
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;
|