mirror of
https://github.com/kou029w/_.git
synced 2025-01-31 06:18:07 +00:00
19 lines
362 B
TypeScript
19 lines
362 B
TypeScript
import React from "react";
|
|
import Document, { Head, Main, NextScript } from "next/document";
|
|
|
|
export default class extends Document {
|
|
render() {
|
|
return (
|
|
<html lang="ja" dir="ltr">
|
|
<Head>
|
|
<meta charSet="utf-8" />
|
|
</Head>
|
|
|
|
<body>
|
|
<Main />
|
|
<NextScript />
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|
|
}
|