Skip to content

Instantly share code, notes, and snippets.

@Mood-al
Created October 2, 2022 22:43
Show Gist options
  • Save Mood-al/9f1d731d482970e00f23e630df29872f to your computer and use it in GitHub Desktop.
Save Mood-al/9f1d731d482970e00f23e630df29872f to your computer and use it in GitHub Desktop.
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