Intro code

import React from 'react';
import { ViewStyleSheetTextTextInput } from 'react-native';

const Intro = () => {
    return (
        <View style={styles.container}>
            <Text>Enter Your Name to Continue</Text>
            <TextInput />
        </View>
    )
}

const styles = StyleSheet.create({
    container: {}
})

export default Intro;

Comments

Popular posts from this blog

Simple Redux

Add Axios Interceptor in Services where Api is called

React Interview Questions