Files
icons/src/pages/_app.tsx
2023-02-16 04:23:29 -06:00

10 lines
213 B
TypeScript

import { type AppType } from "next/dist/shared/lib/utils";
import "../styles/globals.css";
const MyApp: AppType = ({ Component, pageProps }) => {
return <Component {...pageProps} />;
};
export default MyApp;