'use client'; interface RawViewProps { rawText: string; } /** Verbatim response body. No parsing, no highlighting — readers * occasionally need to inspect trailing whitespace, escape * sequences, or a payload that accidentally claims one content type * and ships another, and the Pretty view hides some of that. */ export function RawView({ rawText }: RawViewProps) { if (!rawText) { return (
Empty response body
); } return (
            {rawText}
        
); }