| Total Complexity | 1 |
| Complexity/F | 1 |
| Lines of Code | 14 |
| Function Count | 1 |
| Duplicated Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | import React from 'react'; |
||
| 2 | import { useState, useEffect } from 'react'; |
||
| 3 | import { ScrollView, Image, Text, View, StyleSheet, StatusBar, Dimensions, Pressable } from 'react-native'; |
||
| 4 | import {SafeAreaView} from 'react-native-safe-area-context'; |
||
| 5 | import EmailForm from './EmailForm'; |
||
| 6 | |||
| 7 | export default function EmailRegister({setToken, navigation, setIsLoggedIn}): any { |
||
| 8 | |||
| 9 | return ( |
||
| 10 | <SafeAreaView> |
||
| 11 | <EmailForm navigation={navigation} setToken={setToken} setIsLoggedIn={setIsLoggedIn}></EmailForm> |
||
| 12 | </SafeAreaView> |
||
| 13 | ) |
||
| 14 | }; |