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