login.tsx 474 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. export default function LoginPage() {
  5. const isDev = () => process.env.EXPO_PUBLIC_NODE_ENV == 'development';
  6. return (
  7. <View className={`flex-1 ${isDev() ? 'relative' : ''}`}>
  8. {isDev() && <GoTestPageBTN />}
  9. <MultiStepForm />
  10. </View>
  11. );
  12. }