-
Notifications
You must be signed in to change notification settings - Fork 636
Closed
Labels
Description
Describe the bug
The TextInput
component has no props other than key
and ref
:
Note that the type of onKeyDown
is inferred as true
because the effective types for TextInput
appear to be essentially any & React.RefAttributes & React.Attributes
(meaning any
along with key
and ref
).
To Reproduce
Edit TextInput
components anywhere, such as in the TextInput.test.tsx
file.
camchenry