forked from zhangyonghao/minimap
5 lines
149 B
TypeScript
5 lines
149 B
TypeScript
import type { AppProps } from "next/app";
|
|
|
|
export default function App({ Component, pageProps }: AppProps) {
|
|
return <Component {...pageProps} />;
|
|
} |