import React from 'react'; import { Button, Spinner } from 'react-bootstrap'; interface Props { loading: boolean; buttonText: string; } const SubmitButton = ({ loading, buttonText }: Props) => ( ); export default SubmitButton;