mirror of
https://github.com/explosion/spaCy.git
synced 2025-01-27 17:54:39 +03:00
7 lines
182 B
TypeScript
7 lines
182 B
TypeScript
import '../styles/globals.sass'
|
|
import type { AppProps } from 'next/app'
|
|
|
|
export default function App({ Component, pageProps }: AppProps) {
|
|
return <Component {...pageProps} />
|
|
}
|