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