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