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} />; };