From 4209e4ad0f2e699f63ed4a0ea07f963f19495c89 Mon Sep 17 00:00:00 2001 From: siujamo Date: Wed, 25 Feb 2026 09:14:38 +0800 Subject: [PATCH] fix: import React in JsonCodeEditor for proper JSX support --- src/components/json-code-editor/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/json-code-editor/index.tsx b/src/components/json-code-editor/index.tsx index 1f0c1e8..973815a 100644 --- a/src/components/json-code-editor/index.tsx +++ b/src/components/json-code-editor/index.tsx @@ -1,4 +1,4 @@ -import { useMemo, useRef } from "react" +import React, { useMemo, useRef } from "react" type JsonCodeEditorProps = { value: string