Spaces:
Build error
Build error
File size: 586 Bytes
5916048 5be784e 5916048 5be784e 5916048 5be784e 5916048 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
import Highlight from "react-highlight";
import "node_modules/highlight.js/styles/atom-one-dark.css";
import { Loading } from "@/components/loading";
export const Response = ({ res, loading }: { res: any; loading: boolean }) => {
return (
<div className="overflow-auto h-full relative">
<Highlight className="json text-sm !bg-slate-950/10 !h-full !p-3">
{JSON.stringify(res ?? {}, null, 2)}
</Highlight>
{loading && (
<Loading>
<p className="text-slate-400 text-lg mt-4">Processing...</p>
</Loading>
)}
</div>
);
};
|