File size: 304 Bytes
a34cccb
 
 
 
 
 
 
 
 
 
9793e68
 
a34cccb
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
export default function StatusBadge({ state, stage }) {
  const color =
    state === "CONNECTED"
      ? "bg-green-500"
      : state === "ERROR"
      ? "bg-red-500"
      : "bg-gray-500";

  return (
    <div className={`px-3 py-1 rounded ${color}`}>

	  {state} • {stage}

	</div>
  );
}