Created
January 25, 2020 20:01
-
-
Save webmasterdevlin/99ec7a75fa6c7aa210940485d4d7a7a7 to your computer and use it in GitHub Desktop.
This file contains 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 { View, Text } from 'react-native' | |
import { Button } from 'react-native-paper'; | |
const LoginScreen = () => { | |
return (<View> | |
<Text>Hello LoginScreen</Text> | |
<Text>Hello LoginScreen</Text> | |
<Text>Hello LoginScreen</Text> | |
<Button icon="camera" mode="contained" onPress={() => console.log('Pressed')}> | |
Press me | |
</Button> | |
</View>) | |
}; | |
export default LoginScreen; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment