import PropTypes from 'prop-types'; import React from 'react'; import format from 'date-fns/format'; import distanceInWordsToNow from 'date-fns/distance_in_words_to_now'; import orderBy from 'lodash/orderBy'; import { APIKeyPropType } from './APIKeyForm'; import TrashCanIcon from '../../../images/trash-can.svg'; function APIKeyList({ apiKeys, onRemove, t }) { return (
{t('APIKeyList.Name')} | {t('APIKeyList.Created')} | {t('APIKeyList.LastUsed')} | {t('APIKeyList.Actions')} |
---|---|---|---|
{key.label} | {format(new Date(key.createdAt), 'MMM D, YYYY h:mm A')} | {lastUsed} |