12 lines
266 B
TypeScript
12 lines
266 B
TypeScript
import { useRTVIClientTransportState } from '@pipecat-ai/client-react';
|
|
|
|
export function StatusDisplay() {
|
|
const transportState = useRTVIClientTransportState();
|
|
|
|
return (
|
|
<div className="status">
|
|
Status: <span>{transportState}</span>
|
|
</div>
|
|
);
|
|
}
|