import Highlight from "react-highlight"; import { Loading } from "@/components/loading"; export const Response = ({ res, loading }: { res: any; loading: boolean }) => { return (
{JSON.stringify(res ?? {}, null, 2)} {loading && (

Processing...

)}
); };