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