spaCy/website/pages/_document.tsx

14 lines
277 B
TypeScript
Raw Normal View History

import { Html, Head, Main, NextScript } from 'next/document'
export default function Document() {
return (
2022-12-12 19:33:25 +03:00
<Html lang="en">
<Head />
<body>
<Main />
<NextScript />
</body>
</Html>
)
}