/** * Duration Section Component * Handles: Duration & schedule (trip type, days, availability, seasonal) * * This is a placeholder - extract content from TripForm.tsx case 'duration' */ import React from "react"; import { Calendar } from "lucide-react"; import { TripFormSectionProps } from "../types"; import { SectionHeader } from "../shared/SectionHeader"; export const DurationSection: React.FC = () => { // TODO: Extract duration section content from TripForm.tsx (lines ~2024-2271) return (
{/* TODO: Add duration form fields */}

Section content to be extracted from TripForm.tsx

); };