cfahlgren1's picture
cfahlgren1 HF staff
add path param for user page
c798beb
raw
history blame
233 Bytes
import { Html, Head, Main, NextScript } from "next/document";
export default function Document() {
return (
<Html lang="en">
<Head />
<body>
<Main />
<NextScript />
</body>
</Html>
);
}