import React from 'react'; import { Briefcase } from 'lucide-react'; interface Props { formData: { employment_status: string; citizenship: string }; onChange: (e: React.ChangeEvent) => void; } const EmploymentSection: React.FC = ({ formData, onChange }) => (

Employment & Status

); export default EmploymentSection;