Files
next-gdrive-index/src/pages/_document.tsx
T
2023-04-21 21:07:19 +07:00

16 lines
305 B
TypeScript

import { Html, Head, Main, NextScript } from 'next/document'
import { Inter, Merriweather, JetBrains_Mono } from "next/font/google";
export default function Document() {
return (
<Html lang='en'>
<Head />
<body>
<Main />
<NextScript />
</body>
</Html>
);
}