interface VoiceStatusProps {
text: string;
visible: boolean;
}
export function VoiceStatus({ text, visible }: VoiceStatusProps) {
return (
{text}
);
}
interface ControlBarProps {
onReset(): void;
}
export function ControlBar({ onReset }: ControlBarProps) {
return (
);
}