import React from 'react'; const CustomerInfoSection = ({ formData, onInputChange }) => { const handleChange = (field, value) => { onInputChange('customer', field, value); }; return (

Customer Information

handleChange('Principal_Investigator', e.target.value)} style={{ color: '#555555' }} className="w-full p-2 border border-gray-300 rounded text-sm font-arial h-10 box-border" required />
handleChange('Email', e.target.value)} style={{ color: '#555555' }} className="w-full p-2 border border-gray-300 rounded text-sm font-arial h-10 box-border" required />
handleChange('Company_Institution', e.target.value)} style={{ color: '#555555' }} className="w-full p-2 border border-gray-300 rounded text-sm font-arial h-10 box-border" required />
handleChange('Contact_Number', e.target.value)} style={{ color: '#555555' }} className="w-full p-2 border border-gray-300 rounded text-sm font-arial h-10 box-border" required />
handleChange('Address', e.target.value)} style={{ color: '#555555' }} className="w-full p-2 border border-gray-300 rounded text-sm font-arial h-10 box-border" required />
handleChange('City', e.target.value)} style={{ color: '#555555' }} className="w-full p-2 border border-gray-300 rounded text-sm font-arial h-10 box-border" required />
handleChange('State', e.target.value)} style={{ color: '#555555' }} className="w-full p-2 border border-gray-300 rounded text-sm font-arial h-10 box-border" required />
handleChange('Pin', e.target.value)} style={{ color: '#555555' }} className="w-full p-2 border border-gray-300 rounded text-sm font-arial h-10 box-border" required />
handleChange('Secondary_Contact', e.target.value)} style={{ color: '#555555' }} className="w-full p-2 border border-gray-300 rounded text-sm font-arial h-10 box-border" />
handleChange('Secondary_Email', e.target.value)} style={{ color: '#555555' }} className="w-full p-2 border border-gray-300 rounded text-sm font-arial h-10 box-border" />
handleChange('Secondary_Company_Institution', e.target.value)} style={{ color: '#555555' }} className="w-full p-2 border border-gray-300 rounded text-sm font-arial h-10 box-border" />
handleChange('Secondary_Contact_Number', e.target.value)} style={{ color: '#555555' }} className="w-full p-2 border border-gray-300 rounded text-sm font-arial h-10 box-border" />
); }; export default CustomerInfoSection;