What is the correct type for React events. Initially I just used any for the sake of simplicity. Now, I am trying to clean things up and avoid use of any<
any
any<
for update: event: React.ChangeEvent for submit: event: React.FormEvent for click: event: React.MouseEvent
event: React.ChangeEvent
event: React.FormEvent
event: React.MouseEvent