mirror of
https://github.com/MinazukiAmane/shortlink.git
synced 2025-03-15 12:15:57 +08:00
7 lines
181 B
TypeScript
7 lines
181 B
TypeScript
|
import "@/styles/globals.css";
|
||
|
import type { AppProps } from "next/app";
|
||
|
|
||
|
export default function App({ Component, pageProps }: AppProps) {
|
||
|
return <Component {...pageProps} />;
|
||
|
}
|