import React from 'react'; import { AccountTag } from '../../account'; import type { IClusterMatch } from './clusterMatches.component'; export interface IClusterMatchesProps { matches: IClusterMatch[]; } export class ClusterMatches extends React.Component { public render() { const { matches } = this.props; if (!matches || !matches.length) { return
(no matches)
; } return ( ); } }