Keep/mcp-server/node_modules/hono/dist/jsx/jsx-dev-runtime.js
sepehr 8d95f34fcc fix: Add debounced Undo/Redo system to avoid character-by-character history
- Add debounced state updates for title and content (500ms delay)
- Immediate UI updates with delayed history saving
- Prevent one-letter-per-undo issue
- Add cleanup for debounce timers on unmount
2026-01-04 14:28:11 +01:00

19 lines
444 B
JavaScript

// src/jsx/jsx-dev-runtime.ts
import { jsxFn } from "./base.js";
import { Fragment } from "./base.js";
function jsxDEV(tag, props, key) {
let node;
if (!props || !("children" in props)) {
node = jsxFn(tag, props, []);
} else {
const children = props.children;
node = Array.isArray(children) ? jsxFn(tag, props, children) : jsxFn(tag, props, [children]);
}
node.key = key;
return node;
}
export {
Fragment,
jsxDEV
};