PluginProbe
Yatra – Travel Booking & Tour Operator Software / 3.0.2.8
Yatra – Travel Booking & Tour Operator Software v3.0.2.8
3.0.15 3.0.14 3.0.14.1 3.0.14.2 3.0.12 3.0.13 3.0.11 3.0.10 3.0.9 3.0.8 3.0.7 3.0.6 3.0.5 3.0.5.1 3.0.4 3.0.3 3.0.2.9 3.0.2.7 3.0.2.8 3.0.2.6 trunk 1.0.0 2.0.0 2.0.1 2.0.10 All 83 releases
yatra / resources / js / components / trip-form / index.ts

index.ts in Yatra – Travel Booking & Tour Operator Software 3.0.2.8, at resources/js/components/trip-form/index.ts

35 lines 1.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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