mirror of
https://github.com/explosion/spaCy.git
synced 2025-02-14 02:20:34 +03:00
6 lines
150 B
TypeScript
6 lines
150 B
TypeScript
import type { AppProps } from 'next/app'
|
|
|
|
export default function App({ Component, pageProps }: AppProps) {
|
|
return <Component {...pageProps} />
|
|
}
|