wisesplit/pages/_app.tsx

9 lines
192 B
TypeScript
Raw Normal View History

2022-10-24 07:10:52 +00:00
import "../styles/globals.css";
import type { AppProps } from "next/app";
function MyApp({ Component, pageProps }: AppProps) {
return <Component {...pageProps} />;
}
export default MyApp;