feat: custom val state

This commit is contained in:
karishmas6
2024-08-28 23:50:50 +05:30
parent a31860e989
commit 636b3e4145

View File

@@ -42,6 +42,7 @@ const rows = [
export const InterpretationLog = () => {
const [open, setOpen] = useState<boolean>(false);
const [log, setLog] = useState<string>('');
const [customValue, setCustomValue] = useState('');
const logEndRef = useRef<HTMLDivElement | null>(null);