Created
October 2, 2022 22:43
-
-
Save Mood-al/9f1d731d482970e00f23e630df29872f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const onInputFocus = (e) => { | |
setFocussed(true); | |
if (e.target.value === "" && locale === "ar") { | |
setDir("rtl"); | |
return; | |
} | |
isRTL(e.target.value) ? setDir("rtl") : setDir("ltr"); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment