Files
formbricks-formbricks/apps/demo/pages/_document.tsx

16 lines
298 B
TypeScript

import { Head, Html, Main, NextScript } from "next/document";
const Document = () => {
return (
<Html lang="en" className="h-full bg-slate-50">
<Head />
<body className="h-full">
<Main />
<NextScript />
</body>
</Html>
);
};
export default Document;