| 1 |
/** |
| 2 |
* Trip Form Components - Main Export |
| 3 |
* |
| 4 |
* This file exports all trip form section components and utilities |
| 5 |
* for easy importing in TripForm.tsx |
| 6 |
*/ |
| 7 |
|
| 8 |
// Types |
| 9 |
export * from "./types"; |
| 10 |
|
| 11 |
// Section Components |
| 12 |
export { OverviewSection } from "./sections/OverviewSection"; |
| 13 |
export { LocationSection } from "./sections/LocationSection"; |
| 14 |
export { DurationSection } from "./sections/DurationSection"; |
| 15 |
export { ActivitySection } from "./sections/ActivitySection"; |
| 16 |
export { AccommodationSection } from "./sections/AccommodationSection"; |
| 17 |
export { TransportationSection } from "./sections/TransportationSection"; |
| 18 |
export { PricingSection } from "./sections/PricingSection"; |
| 19 |
export { ItinerarySection } from "./sections/ItinerarySection"; |
| 20 |
export { IncludedSection } from "./sections/IncludedSection"; |
| 21 |
export { BookingSection } from "./sections/BookingSection"; |
| 22 |
export { GallerySection } from "./sections/GallerySection"; |
| 23 |
export { FAQsSection } from "./sections/FAQsSection"; |
| 24 |
export { FrontendTabsSection } from "./sections/FrontendTabsSection"; |
| 25 |
export { SEOSection } from "./sections/SEOSection"; |
| 26 |
export { AdvancedSection } from "./sections/AdvancedSection"; |
| 27 |
|
| 28 |
// Shared Components |
| 29 |
export { SectionHeader } from "./shared/SectionHeader"; |
| 30 |
export { SectionTabs } from "./shared/SectionTabs"; |
| 31 |
|
| 32 |
// Hooks |
| 33 |
export { useTripForm } from "./hooks/useTripForm"; |
| 34 |
export { useAutoSave } from "./hooks/useAutoSave"; |
| 35 |
|