Created
February 22, 2022 12:22
-
-
Save pivaszbs/77ee5b48bb5cb46b5a4297d2305497e6 to your computer and use it in GitHub Desktop.
Флаги
This file contains 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
function TextField({ | |
withoutImplicitFocus, | |
disabled, | |
onFocus, | |
hasLowerCase, | |
hasAutoSelectAfterSubmit, | |
onChange: onChangeProp, | |
hasAutoSelect = true, | |
selector = DEFAULT_SELECTOR, | |
priority = 0, | |
dataE2e = selector || DEFAULT_SELECTOR, | |
dataTestId = selector || DEFAULT_SELECTOR, | |
superFeatureEnabled, | |
onKeyDown = noop, | |
...textFieldProps | |
}: Props) { | |
if (superFeatureEnabled) { | |
doMyBest(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment