import React from 'react'; const SampleInfoSection = ({ formData, onInputChange }) => { const handleChange = (field, value) => { onInputChange('sample', field, value); }; const sampleTypeOptions = [ '', 'DNA', 'RNA', 'cfDNA', 'Blood', 'Saliva', 'Swabs', 'Bodily Fluids', 'Feaces', 'Soil', 'Seeds', 'Water', 'Fresh/Frozen tissue', 'FFPE block', 'Plant Tissue', 'Animal Tissue', 'Ready to Run Library (RTRL)', 'Others' ]; const sampleSourceOptions = [ '', 'Plant', 'Human', 'Microbial', 'Animal', 'Environmental', 'Others' ]; return (

Sample Information

handleChange('Project_Title', 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('Number_of_Samples', 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('Sample_Type_Other', 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('Sample_Source_Other', 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('Pathogenicity', 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('Sample_Remarks', 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 SampleInfoSection;