import React from "react"; import { useAtom } from "jotai"; import { TranscribeAtom } from "../Variables"; function TranscribePage() { const [transcribe, setTranscribe] = useAtom(TranscribeAtom); return (

Transcript of speech

{transcribe.map((item, index) => { if (item?.isCommand) { return (

{`>>`} {item?.msg}

); } else { return (

{item?.msg}

); } })}
); } export default TranscribePage;