Created
January 31, 2021 23:26
-
-
Save briangershon/cfa5c1ba0e8938eaf85c7ea9a7945c37 to your computer and use it in GitHub Desktop.
TypeScript interface for React click event
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
interface Props { | |
clickOnSuccess: ( | |
event: React.MouseEvent<HTMLButtonElement>, | |
url: string | |
) => void; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment