From 245c1f2d584b782215104aae058c2534d77302da Mon Sep 17 00:00:00 2001 From: alguilhot Date: Fri, 21 Oct 2022 19:43:08 +0200 Subject: [PATCH] FIX: imports SignIn --- bob_party/src/screens/SignIn.tsx | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/bob_party/src/screens/SignIn.tsx b/bob_party/src/screens/SignIn.tsx index 00666cf..ad7414b 100644 --- a/bob_party/src/screens/SignIn.tsx +++ b/bob_party/src/screens/SignIn.tsx @@ -1,16 +1,11 @@ import { StatusBar } from 'expo-status-bar' -import { StyleSheet, View, ImageSourcePropType, Pressable, Text} from 'react-native' +import { View, Pressable, Text} from 'react-native' import React, { useState } from 'react'; import stylesScreen from './style/screens.style' import { TextInput } from 'react-native-gesture-handler'; -import { CustomTextInput } from '../components/CustomTextInput'; -import { ButtonGameTypeChoice } from '../components/ButtonGameTypeChoice'; -import { User } from "../core/user"; import tabUS from "../constUser"; - import styles from "./style/SignIn.style" -import { useDispatch, useSelector } from 'react-redux'; -import { RootState } from '../redux/store'; +import { useDispatch, } from 'react-redux'; import { loginUser } from '../redux/features/currentUserSlice';