mirror of
https://github.com/NohamR/lanyard-profile-readme.git
synced 2026-05-26 04:17:19 +00:00
6 lines
162 B
TypeScript
6 lines
162 B
TypeScript
import type { AppProps } from "next/app";
|
|
|
|
export default function LanyardReadMe({ Component, pageProps }: AppProps) {
|
|
return <Component {...pageProps} />;
|
|
}
|