1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-01-31 06:18:07 +00:00
_/pages/_document.tsx

17 lines
312 B
TypeScript
Raw Normal View History

2019-04-23 16:48:33 +09:00
import React from "react";
import Document, { Head, Main, NextScript } from "next/document";
export default class extends Document {
render() {
return (
<html lang="ja" dir="ltr">
2019-04-24 17:21:31 +09:00
<Head />
2019-04-23 16:48:33 +09:00
<body>
<Main />
<NextScript />
</body>
</html>
);
}
}