new-personal-site/pages/_app.tsx

7 lines
183 B
TypeScript
Raw Permalink Normal View History

2024-11-28 14:50:17 +00:00
import "@/styles/globals.css";
import type { AppProps } from "next/app";
export default function App({ Component, pageProps }: AppProps) {
2024-12-09 15:36:17 +00:00
return <Component {...pageProps} />;
2024-11-28 14:50:17 +00:00
}