login.tsx 265 B

12345678910
  1. import { View } from 'react-native';
  2. import MultiStepForm from '../../component/registrationMultiStepForm/multi_step_form';
  3. export default function LoginPage() {
  4. return (
  5. <View className="flex-1">
  6. <MultiStepForm />
  7. </View>
  8. );
  9. }