mirror of
https://github.com/rjNemo/melon_frontend
synced 2026-06-06 02:16:45 +00:00
6 lines
179 B
TypeScript
6 lines
179 B
TypeScript
import "../styles/globals.css";
|
|
import { AppProps } from "next/app";
|
|
|
|
export default function MyApp({ Component, pageProps }: AppProps) {
|
|
return <Component {...pageProps} />;
|
|
}
|