Skip to content

Instantly share code, notes, and snippets.

@CodingItWrong
Created January 4, 2019 02:37
Show Gist options
  • Save CodingItWrong/c4f41fc80c9a762a4c5dd844becb4a6d to your computer and use it in GitHub Desktop.
Save CodingItWrong/c4f41fc80c9a762a4c5dd844becb4a6d to your computer and use it in GitHub Desktop.
import React, { Component } from 'react';
import {
+ TextInput,
View,
} from 'react-native';
export default class NewMessageForm extends Component {
render() {
return (
<View>
+ <TextInput
+ testID="messageText"
+ />
</View>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment