mirror of
https://github.com/explosion/spaCy.git
synced 2025-05-28 17:53:19 +03:00
7 lines
179 B
TypeScript
7 lines
179 B
TypeScript
import '../styles/globals.css'
|
|
import type { AppProps } from 'next/app'
|
|
|
|
export default function App({ Component, pageProps }: AppProps) {
|
|
return <Component {...pageProps} />
|
|
}
|