MCPcopy Create free account
hub / github.com/WardAnalytics/WardGraph / LabelList

Function LabelList

src/components/common/LabelList.tsx:16–24  ·  view source on GitHub ↗
({ labels })

Source from the content-addressed store, hash-verified

14
15// List of labels using Badges
16const LabelList: FC<LabelListProps> = ({ labels }) => {
17 return (
18 <span className="flex items-center gap-x-1">
19 {labels.map((label) => (
20 <Badge color={Colors.BLUE} text={label} key={label} />
21 ))}
22 </span>
23 );
24};
25
26export default LabelList;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected