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
| ### Keybase proof | |
| I hereby claim: | |
| * I am narodejesus on github. | |
| * I am narodejesus (https://keybase.io/narodejesus) on keybase. | |
| * I have a public key ASCoaIyVq4u8WEczpQIuZkxxE0-58ogGDCb5cP2kWHAz0Qo | |
| To claim this, I am signing this object: |
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
| import React from 'react' | |
| import {TextInput} from 'react-native' | |
| import NumberInput from 'some-library-input' | |
| interface Props = { | |
| type: 'text' | 'number' | 'password' | |
| value: string | |
| placeholder: string | |
| mask?: string | |
| passwordRules?: string |
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
| import React from 'react' | |
| import {TextInput} from 'react-native' | |
| import NumberInput from 'some-library-input' | |
| interface Props = { | |
| type: 'text' | 'number' | |
| value: string | |
| placeholder: string | |
| } |