Files
reflector/www/app/transcripts/liveTranscription.tsx
2023-08-16 17:55:47 +07:00

12 lines
273 B
TypeScript

type LiveTranscriptionProps = {
text: string;
};
export default function LiveTrancription(props: LiveTranscriptionProps) {
return (
<div className="h-[7svh] w-full bg-gray-800 text-white text-center py-4 text-2xl">
&nbsp;{props.text}&nbsp;
</div>
);
}