import type {RouteComponentProps} from 'react-router'; import moment from 'moment'; import ResultGrid from 'sentry/components/resultGrid'; import {t} from 'sentry/locale'; import type {Organization} from 'sentry/types'; type Row = { dateCreated: string; name: string; organization: Organization; slug: string; status: string; }; type Props = RouteComponentProps<{}, {}>; const getRow = (row: Row) => [ {row.name}
{row.organization.name} , {row.status} , {moment(row.dateCreated).format('ll')} , ]; function AdminProjects(props: Props) { const columns = [ Project, Status , Created , ]; return (

{t('Projects')}

); } export default AdminProjects;