1 2 3 4 5 6 7 8 9 10 11 12 13 14
import React from 'react'; import {View, Text} from 'react-native'; interface RegistrationProps {} const Registration: React.FC<RegistrationProps> = ({}) => { return ( <View style={{flex: 1, alignSelf: 'center', justifyContent: 'center'}}> <Text style={{fontSize: 18}}>Registration sequence begins here!</Text> </View> ); }; export default Registration;