import { FunctionComponent } from 'react'; interface FormButtonProps { children: string; type: 'button' | 'submit' | 'reset'; isSubmitting?: boolean; } const Button: FunctionComponent = ({ children, type, isSubmitting = false, }) => ( // eslint-disable-next-line react/button-has-type ); export default Button;