cs-2022-class-profile/pages/_app.tsx

7 lines
190 B
TypeScript
Raw Permalink Normal View History

2022-06-03 01:31:07 -04:00
import type { AppProps } from "next/app";
import React from "react";
2022-06-03 01:31:07 -04:00
2022-06-03 01:31:07 -04:00
export default function App({ Component, pageProps }: AppProps): JSX.Element {
return <Component {...pageProps} />;
2022-06-03 01:31:07 -04:00
}