blob: 047963fe8cce1000ec0d5e5ad238afc70349c2de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import "../styles/globals.css";
import React from "react";
interface Props {
Component: typeof React.Component;
pageProps: any;
}
const MyApp = ({ Component, pageProps }: Props): JSX.Element => {
return <Component {...pageProps} />;
};
export default MyApp;
|