Files
lanyard-profile-readme/pages/_app.tsx
callumok2004 b169bbc15d 🌟 Code Cleanup
2021-06-21 03:43:22 +01:00

6 lines
159 B
TypeScript

import type { AppProps } from 'next/app'
export default function LandyardReadMe({ Component, pageProps }: AppProps) {
return <Component {...pageProps} />
}