Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. import React from 'react';
  2. import { Image, View } from 'react-native';
  3. import { Text, Button } from 'native-base';
  4. import { connect } from 'react-redux';
  5. import EStyleSheet from 'react-native-extended-stylesheet';
  6. import { colors } from '../styles';
  7.  
  8. class Login extends React.Component {
  9. render() {
  10. return (
  11. <View style={styles.container}>
  12. <View style={styles.contentCenter}>
  13. <Text style={[styles.titleContent,styles.fontBold]}>Simple Secure</Text>
  14. <Text style={[styles.titleContent,styles.fontBold]}>Reliable Messaging</Text>
  15. </View>
  16. </View>
  17. );
  18. }
  19. }
  20.  
  21.  
  22. const styles = EStyleSheet.create({
  23. titleContent: {
  24. color:'#62778c',
  25. fontSize: '1.4rem',
  26. textAlign: 'justify',
  27. }
  28. });
  29.  
  30. const mapStateToProps = (state) => {
  31. return {};
  32. };
  33.  
  34. export default connect(mapStateToProps)(Login);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement