import type {RouteComponentProps} from 'react-router'; import moment from 'moment-timezone'; import ResultGrid from 'sentry/components/resultGrid'; import {t} from 'sentry/locale'; import type {Organization} from 'sentry/types/organization'; type Row = { dateCreated: string; name: string; organization: Organization; slug: string; status: string; }; type Props = RouteComponentProps<{}, {}>; const getRow = (row: Row) => [