This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
website/pages/_app.tsx

8 lines
155 B
TypeScript

import { AppProps } from 'next/app';
function MyApp({ Component, pageProps }: AppProps) {
return <Component {...pageProps} />;
}
export default MyApp;