๐Ÿ“ฆ vercel / next.js

๐Ÿ“„ _app.tsx ยท 7 lines
1
2
3
4
5
6
7import type { AppProps } from "next/app";
import "../app.css";

export default function App({ Component, pageProps }: AppProps) {
  return <Component {...pageProps} />;
}