// Copyright (C) The Arvados Authors. All rights reserved. // // SPDX-License-Identifier: AGPL-3.0 import * as React from 'react'; import { IconTypes } from '../../icon/icon'; import Attribute from '../../attribute/attribute'; import AbstractItem from './abstract-item'; import { CollectionResource } from '../../../models/collection'; import { formatDate } from '../../../common/formatters'; export default class CollectionItem extends AbstractItem { getIcon(): IconTypes { return IconTypes.COLLECTION; } buildDetails(): React.ReactElement { return
{/* Links but we dont have view */} {/* Missing attrs */}
; } }