index.tsx 662 B

12345678910111213141516171819202122
  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 HomePage from '../component/homePage/homePage';
  6. export default function Index() {
  7. return (
  8. <View style={{ flex: 1 }}>
  9. {/* <Link href="/about">About</Link> */}
  10. {/* ...other links */}
  11. {/* <Link href="/user/bacon">View user</Link> */}
  12. {/* <MultiStepForm /> */}
  13. <BookingMenuPage />
  14. {/* <HomePage /> */}
  15. </View>
  16. );
  17. }