feat: handle custom input change

This commit is contained in:
karishmas6
2024-08-28 23:56:30 +05:30
parent 765c13cc07
commit 4d686a990a

View File

@@ -98,6 +98,11 @@ export const InterpretationLog = () => {
}
};
const handleCustomInputChange = (event) => {
setCustomValue(event.target.value);
};
useEffect(() => {
socket?.on('log', handleLog);