website/pages/_app.tsx

8 lines
183 B
TypeScript
Raw Normal View History

2024-04-20 14:56:46 +00:00
import '@/styles/globals.scss';
import type { AppProps } from 'next/app';
export default function App({ Component, pageProps }: AppProps) {
return <Component {...pageProps} />;
}