25-plus-5-Clock/pages/_app.tsx

7 lines
175 B
TypeScript
Raw Normal View History

2023-03-31 03:29:53 +02:00
import type { AppProps } from "next/app";
2023-04-03 05:36:00 +02:00
import "./globals.scss";
2023-03-31 03:29:53 +02:00
export default function App({ Component, pageProps }: AppProps) {
return <Component {...pageProps} />;
}