aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/examples/non-monorepo/pages/_app.tsx
blob: e6f7c5c6d7d67e804263f4e4766ccb24bc64ef96 (plain) (blame)
1
2
3
4
5
6
import "../styles/globals.css";
import type { AppProps } from "next/app";

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