import ReactJson from 'react-json-view' import { useKclContext } from 'lang/KclProvider' import { useResolvedTheme } from 'hooks/useResolvedTheme' const ReactJsonTypeHack = ReactJson as any export const LogsPane = () => { const theme = useResolvedTheme() const { logs } = useKclContext() return (
) }