Skip to content

Instantly share code, notes, and snippets.

@CodingItWrong
Created January 4, 2019 02:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save CodingItWrong/8e251a0a96b8489535a390bdfb65f339 to your computer and use it in GitHub Desktop.
Save CodingItWrong/8e251a0a96b8489535a390bdfb65f339 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