Skip to content

Instantly share code, notes, and snippets.

@Mood-al
Created October 2, 2022 22:44
Show Gist options
  • Save Mood-al/e92b65344a44496dd4996b819fa80a37 to your computer and use it in GitHub Desktop.
Save Mood-al/e92b65344a44496dd4996b819fa80a37 to your computer and use it in GitHub Desktop.
const onInputBlur = (e) => {
setFocussed(false);
if (e.target.value === "" && locale === "ar") {
setDir("rtl");
return;
}
locale === "ar" ? setDir("rtl") : setDir("ltr");
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment