aboutsummaryrefslogtreecommitdiffstats
path: root/packages/instant/src/components/retry_button.tsx
blob: 28547ce54bc0cc00cbcc159d69bc1d6d5a85e2e1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
import * as React from 'react';

import { SecondaryButton } from './secondary_button';

export interface RetryButtonProps {
    onClick: () => void;
}

export const RetryButton: React.StatelessComponent<RetryButtonProps> = props => {
    return <SecondaryButton text="Try Again" onClick={props.onClick} />;
};