spaCy/website/pages/_app.tsx

7 lines
182 B
TypeScript
Raw Normal View History

2022-11-10 05:08:57 +03:00
import '../styles/globals.sass'
2022-11-10 02:18:01 +03:00
import type { AppProps } from 'next/app'
export default function App({ Component, pageProps }: AppProps) {
2022-11-10 03:01:24 +03:00
return <Component {...pageProps} />
2022-11-10 02:18:01 +03:00
}