Shi Wen
Results
2
comments of
Shi Wen
me too, anyone deal with this problem?
It is the default behavior of Tab, you can prevent in `onKyedown `handler ``` const onKeyDown = (e) => { if (e.key === "Tab") { e.preventDefault(); } }; ```