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