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 / sections / FrontendTabsSection.tsx

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

31 lines 882 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /**
2 * Frontend Tabs Section Component
3 * Handles: Frontend tabs management
4 *
5 * This is a placeholder - extract content from TripForm.tsx case 'frontend-tabs'
6 */
7
8 import React from "react";
9 import { Settings } from "lucide-react";
10 import { TripFormSectionProps } from "../types";
11 import { SectionHeader } from "../shared/SectionHeader";
12
13 export const FrontendTabsSection: React.FC<TripFormSectionProps> = () => {
14 // TODO: Extract frontend tabs section content from TripForm.tsx (lines ~3800-3970)
15
16 return (
17 <div className="space-y-4">
18 <SectionHeader
19 icon={Settings}
20 title="Frontend Tabs"
21 description="Manage frontend display tabs for your trip page"
22 />
23
24 {/* TODO: Add frontend tabs management */}
25 <p className="text-sm text-gray-500">
26 Section content to be extracted from TripForm.tsx
27 </p>
28 </div>
29 );
30 };
31