index.tsx 757 B

1234567891011121314151617181920212223
  1. import { View } from 'react-native';
  2. // import { Link } from 'expo-router';
  3. // import MultiStepForm from '../component/registrationMultiStepForm/multi_step_form';
  4. import BookingMenuPage from '../component/bookingMenuPage/bookingMenuPage';
  5. import SearchPage from '../component/searchPage/searchPage';
  6. // import HomePage from '../component/homePage/homePage';
  7. export default function Index() {
  8. return (
  9. <View style={{ flex: 1 }}>
  10. {/* <Link href="/about">About</Link> */}
  11. {/* ...other links */}
  12. {/* <Link href="/user/bacon">View user</Link> */}
  13. {/* <MultiStepForm /> */}
  14. {/* <BookingMenuPage /> */}
  15. <SearchPage />
  16. {/* <HomePage /> */}
  17. </View>
  18. );
  19. }