login.tsx 527 B

1234567891011121314
  1. import { View } from 'react-native';
  2. import MultiStepForm from '../../component/registrationMultiStepForm/multi_step_form';
  3. import { GoTestPageBTN } from '../../component/test/page';
  4. import { EXPO_PUBLIC_NODE_ENV, EXPO_PUBLIC_API_URL } from '@env';
  5. export default function LoginPage() {
  6. const isDev = () => EXPO_PUBLIC_NODE_ENV == 'development';
  7. return (
  8. <View className={`flex-1 ${isDev() ? 'relative' : ''}`}>
  9. {isDev() && <GoTestPageBTN />}
  10. <MultiStepForm />
  11. </View>
  12. );
  13. }