aboutsummaryrefslogtreecommitdiffstats
path: root/packages/instant/src/components/retry_button.tsx
blob: 0d6188e6a3680e2d62cfbe07dbb28ebce38459a9 (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 onClick={props.onClick}>Try Again</SecondaryButton>;
};