MCPcopy Create free account
hub / github.com/Swizec/article-threader / Document

Function Document

pages/_document.tsx:3–14  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1import { Html, Head, Main, NextScript } from "next/document";
2
3export default function Document() {
4 return (
5 <Html lang="en">
6 <Head />
7
8 <body>
9 <Main />
10 <NextScript />
11 </body>
12 </Html>
13 );
14}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected