type LiveTranscriptionProps = { text: string; translateText: string; }; export default function LiveTrancription(props: LiveTranscriptionProps) { return (

{props.text}

{props.translateText && (

{props.translateText}

)}
); }