Skip to content

Instantly share code, notes, and snippets.

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