type RadioControlsProps = { status: string; isPlaying: boolean; onPlay: () => void | Promise; onStop: () => void; }; export function RadioControls({ status, isPlaying, onPlay, onStop }: RadioControlsProps) { return (

{status}

); }