import React from 'react'; import Button from '@material-ui/core/Button'; import Typography from '@material-ui/core/Typography'; interface ConnectionErrorBannerProps { height: number; retry: () => void; message: string; } export const ConnectionErrorBanner = ({height, retry, message}: ConnectionErrorBannerProps) => (
{message}{' '}
);