import * as React from 'react'; import { Button } from 'ts/components/ui/button'; import { colors } from 'ts/style/colors'; const BUTTON_TEXT = 'reload'; export interface RetryProps { onRetry: () => void; } export const Retry = (props: RetryProps) => (
Something went wrong.
);