aboutsummaryrefslogtreecommitdiff
path: root/src/screens/Registration.tsx
blob: 4465859131501c944c1be02e258590f2ab5e11c1 (plain)
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;