File size: 628 Bytes
5916048
6294700
5be784e
 
5916048
d2a6779
6294700
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/night-owl.css";
import { Loading } from "@/components/loading";
export const Response = ({ res, loading }: { res: any; loading: boolean }) => {
  return (
    <div className="overflow-auto h-full relative xl:col-span-2">
      <Highlight className="json text-sm !bg-slate-950/10 !h-full !p-3 !font-code !whitespace-pre-wrap">
        {JSON.stringify(res ?? {}, null, 2)}
      </Highlight>
      {loading && (
        <Loading>
          <p className="text-slate-400 text-lg mt-4">Processing...</p>
        </Loading>
      )}
    </div>
  );
};