import React from 'react'; import Button, { ButtonProps } from './Button'; type SubmitButtonProps = ButtonProps & { scrollToTop: boolean; }; class SubmitButton extends React.Component { static defaultProps = { scrollToTop: true, }; render() { const { action, scrollToTop } = this.props; return (