string androidized!
// Only string props
<TextInput
ref="inputRef"
otherTags="Jon's car"
placeholder="Enter your name here"
/>
// Only string props
<TextInput
ref="inputRef"
otherTags={R.string.Jon_s_car}
placeholder={R.string.Enter_your_name_here}
/>
Jon_s_car: 'Jon\'s car',
Enter_your_name_here: 'Enter your name here',