'use client'; import React from "react"; interface ASRResultDisplayProps { result: any; ready: boolean | null; task: string; } export const ASRResultDisplay = ({ result, ready }: ASRResultDisplayProps) => { if (ready === false) { return