import type {RouteComponentProps} from 'react-router'; import moment from 'moment'; import Link from 'sentry/components/links/link'; import ResultGrid from 'sentry/components/resultGrid'; import {t} from 'sentry/locale'; type Row = { dateJoined: string; email: string; id: string; lastLogin: string; username: string; }; type Props = RouteComponentProps<{}, {}>; const getRow = (row: Row) => [ {row.username}
{row.email !== row.username && {row.email}} , {moment(row.dateJoined).format('ll')} , {moment(row.lastLogin).format('ll')} , ]; function AdminUsers(props: Props) { const columns = [ User, Joined , Last Login , ]; return (

{t('Users')}

); } export default AdminUsers;