Created
June 23, 2023 08:22
-
-
Save dobladov/d4b7e4252e1b609bf3a0eb1986340fe5 to your computer and use it in GitHub Desktop.
Extend React.FC with custom properties
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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