mirror of
https://github.com/dsoaress/link-free.git
synced 2026-08-18 15:36:03 +01:00
6 lines
148 B
TypeScript
6 lines
148 B
TypeScript
|
|
import type { AppProps } from 'next/app'
|
||
|
|
|
||
|
|
export default function App({ Component, pageProps }: AppProps) {
|
||
|
|
return <Component {...pageProps} />
|
||
|
|
}
|