mirror of
https://github.com/Xevion/icons.git
synced 2025-12-06 05:15:26 -06:00
10 lines
213 B
TypeScript
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;
|