Simple React Native App Folder Structure
BookingApp/ │ ├── android/ ├── ios/ ├── index.js ├── app.json ├── package.json ├── tsconfig.json # or jsconfig.json ├── babel.config.js │ ├── src/ │ ├── api/ │ │ ├── client.ts │ │ ├── endpoints.ts │ │ ├── hooks/ │ │ │ ├── useBookings.ts │ │ │ └── useAuth.ts │ │ └── services/ │ │ ├── authService.ts │ │ └── bookingService.ts │ │ │ ├── assets/ │ │ ├── fonts/ │ │ ├── images/ │ │ └── icons/ │ │ │ ├── components/ │ │ ├── common/ │ │ │ ├── AppButton.tsx │ │ │ ├── AppInput.tsx │ │...