InfiniteCloud/pages/_app.tsx
2025-09-15 14:52:27 +08:00

8 lines
191 B
TypeScript

import '../styles/globals.css';
import type { AppProps } from 'next/app';
function MyApp({ Component, pageProps }: AppProps) {
return <Component {...pageProps} />;
}
export default MyApp;