From 636b3e414503bcd7bf57249ae2fbb16babeba590 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Wed, 28 Aug 2024 23:50:50 +0530 Subject: [PATCH] feat: custom val state --- src/components/molecules/InterpretationLog.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/molecules/InterpretationLog.tsx b/src/components/molecules/InterpretationLog.tsx index 68c28fc3..ed6ca0e5 100644 --- a/src/components/molecules/InterpretationLog.tsx +++ b/src/components/molecules/InterpretationLog.tsx @@ -42,6 +42,7 @@ const rows = [ export const InterpretationLog = () => { const [open, setOpen] = useState(false); const [log, setLog] = useState(''); + const [customValue, setCustomValue] = useState(''); const logEndRef = useRef(null);