| 1234567891011121314 |
- import { View } from 'react-native';
- import MultiStepForm from '../../component/registrationMultiStepForm/multi_step_form';
- import { GoTestPageBTN } from '../../component/test/page';
- import { EXPO_PUBLIC_NODE_ENV, EXPO_PUBLIC_API_URL } from '@env';
- export default function LoginPage() {
- const isDev = () => EXPO_PUBLIC_NODE_ENV == 'development';
- return (
- <View className={`flex-1 ${isDev() ? 'relative' : ''}`}>
- {isDev() && <GoTestPageBTN />}
- <MultiStepForm />
- </View>
- );
- }
|