forked from crowetic/commerce
* Fix typo (#135) The defaultPageProps object had a typo in the name Co-authored-by: B <curciobelen@gmail.com> * changes * changes Co-authored-by: JD <jonathan.dawber@icloud.com>
18 lines
312 B
TypeScript
18 lines
312 B
TypeScript
import Document, { Head, Html, Main, NextScript } from 'next/document'
|
|
|
|
class MyDocument extends Document {
|
|
render() {
|
|
return (
|
|
<Html>
|
|
<Head />
|
|
<body className="loading">
|
|
<Main />
|
|
<NextScript />
|
|
</body>
|
|
</Html>
|
|
)
|
|
}
|
|
}
|
|
|
|
export default MyDocument
|