| 12345678910111213141516171819202122 |
- import { View } from 'react-native';
- // import { Link } from 'expo-router';
- // import MultiStepForm from '../component/registrationMultiStepForm/multi_step_form';
- import BookingMenuPage from '../component/bookingMenuPage/bookingMenuPage';
- // import HomePage from '../component/homePage/homePage';
- export default function Index() {
- return (
- <View style={{ flex: 1 }}>
- {/* <Link href="/about">About</Link> */}
- {/* ...other links */}
- {/* <Link href="/user/bacon">View user</Link> */}
- {/* <MultiStepForm /> */}
- <BookingMenuPage />
- {/* <HomePage /> */}
- </View>
- );
- }
|