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 (
{JSON.stringify(res ?? {}, null, 2)} {loading && (

Processing...

)}
); };