mirror of
https://github.com/kou029w/_.git
synced 2025-01-31 06:18:07 +00:00
16 lines
312 B
TypeScript
16 lines
312 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 />
|
|
<body>
|
|
<Main />
|
|
<NextScript />
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|
|
}
|