1
0
mirror of https://github.com/vercel/commerce.git synced 2025-03-18 18:15:01 +00:00
commerce/pages/_document.tsx
2020-10-01 20:40:40 -05:00

19 lines
368 B
TypeScript

import Document_, { Html, Head, Main, NextScript } from 'next/document'
export default class Document extends Document_ {
render() {
return (
<Html lang="en">
<Head />
<body>
<Main />
<NextScript />
{/**
* Here add your GA and more scripts.
*/}
</body>
</Html>
)
}
}