Files
ember-market-frontend/app/_document.tsx
2025-02-08 16:06:39 +00:00

13 lines
232 B
TypeScript

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