mirror of
https://github.com/NohamR/lanyard-profile-readme.git
synced 2026-05-25 20:00:40 +00:00
6 lines
158 B
TypeScript
6 lines
158 B
TypeScript
import type { AppProps } from 'next/app'
|
|
|
|
export default function LanyardReadMe({ Component, pageProps }: AppProps) {
|
|
return <Component {...pageProps} />
|
|
}
|