- The fix is in! Linty fresh and pretty...

This commit is contained in:
Mike Fitzpatrick
2019-08-08 16:18:08 -04:00
parent dfc4daf696
commit ebb6f47455
52 changed files with 453 additions and 259 deletions

View File

@@ -1,5 +1,5 @@
import React, { Component } from 'react';
import { Text, View } from 'react-native';
import { Button, Text, View } from 'react-native';
import FacebookLogin from '../components/Login/FacebookLogin.container.js';
import LocalLogin from '../components/Login/LocalLogin.container.js';
@@ -7,9 +7,11 @@ import LocalLogin from '../components/Login/LocalLogin.container.js';
import styles from './SignInOrRegister.styles.js';
export default function SignInOrRegister({ navigation }) {
const title = 'Sign In or Register';
return (
<View style={styles.container}>
<Text style={styles.title}>Sign In or Register</Text>
<Text style={styles.title}>{title}</Text>
<View style={styles.localLogin}>
<LocalLogin />
</View>