Skip to content

Commit

Permalink
#80 Create _document.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
kento committed Jan 12, 2023
1 parent 828123b commit 52c1eac
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions pages/_document.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import { Html, Head, Main, NextScript } from "next/document"

const Document = () => (
<Html lang="ja">
<Head />
<body>
<Main />
<NextScript />
</body>
</Html>
)

export default Document

0 comments on commit 52c1eac

Please sign in to comment.