Skip to content

Instantly share code, notes, and snippets.

@dobladov
Created June 23, 2023 08:22
Show Gist options
  • Select an option

  • Save dobladov/d4b7e4252e1b609bf3a0eb1986340fe5 to your computer and use it in GitHub Desktop.

Select an option

Save dobladov/d4b7e4252e1b609bf3a0eb1986340fe5 to your computer and use it in GitHub Desktop.
Extend React.FC with custom properties
export interface ComponentWithInitialProps<T> extends React.FC<T> {
getInitialProps: getInitialProps;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment