File size: 338 Bytes
b59aa07
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
interface ConversationRepoLinkProps {
  selectedRepository: string;
}

export function ConversationRepoLink({
  selectedRepository,
}: ConversationRepoLinkProps) {
  return (
    <span
      data-testid="conversation-card-selected-repository"
      className="text-xs text-neutral-400"
    >
      {selectedRepository}
    </span>
  );
}