1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-01-31 06:18:07 +00:00
_/pages/_document.tsx
2019-04-23 16:48:33 +09:00

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>
);
}
}