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