Event Types React
Berikut event type yang bisa digunakan untuk beberapa event pada component react
// input
React.ChangeEvent<HTMLInputElement>;
// button
React.MouseEvent<HTMLButtonElement>;
// form
React.FormEvent<HTMLFormElement>;
// children
React.ReactNode;
// array children
React.ReactNode;
// function component
React.FC;
// atau
React.FunctionalComponent;