new-personal-site/pages/_app.tsx

7 lines
181 B
TypeScript
Raw 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) {
return <Component {...pageProps} />;
}