mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 04:08:09 +03:00
14 lines
300 B
TypeScript
14 lines
300 B
TypeScript
|
import { Html, Head, Main, NextScript } from 'next/document'
|
||
|
|
||
|
export default function Document() {
|
||
|
return (
|
||
|
<Html lang="en">
|
||
|
<Head />
|
||
|
<body className="theme-blue">
|
||
|
<Main />
|
||
|
<NextScript />
|
||
|
</body>
|
||
|
</Html>
|
||
|
)
|
||
|
}
|