import EmptyStateWarning from 'sentry/components/emptyStateWarning';
import GroupList from 'sentry/components/issues/groupList';
import Panel from 'sentry/components/panels/panel';
import PanelBody from 'sentry/components/panels/panelBody';
import {t} from 'sentry/locale';
import {getUtcDateString} from 'sentry/utils/dates';
import usePageFilters from 'sentry/utils/usePageFilters';
import {Monitor, MonitorEnvironment} from '../types';
type Props = {
monitor: Monitor;
monitorEnvs: MonitorEnvironment[];
orgSlug: string;
};
function MonitorIssuesEmptyMessage() {
return (
{t('No issues relating to this cron monitor have been found.')}