import React from 'react'; import { Artifact } from './Artifact'; import type { IArtifact } from '../../domain'; import './artifactList.less'; export interface IArtifactListProps { artifacts: IArtifact[]; } export class ArtifactList extends React.Component { public render() { let { artifacts } = this.props; artifacts = artifacts || []; if (artifacts.length === 0) { return null; } return (
); } }