Skip to content

Instantly share code, notes, and snippets.

View thomas4t's full-sized avatar
🎯
Focusing

Tomáš Trávníček thomas4t

🎯
Focusing
  • Contractor
  • Prague
View GitHub Profile
@ludder
ludder / _document.tsx
Created February 17, 2021 20:25
Typed example of _document.js in Next.js with styled components as in: https://github.com/vercel/next.js/blob/master/examples/with-styled-components/pages/_document.js
import Document, { DocumentContext, DocumentInitialProps } from "next/document";
import { ReactElement } from "react";
import { ServerStyleSheet } from "styled-components";
interface InitialProps extends DocumentInitialProps {
styles: ReactElement;
}
export default class MyDocument extends Document {
static async getInitialProps(ctx: DocumentContext): Promise<InitialProps> {