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 (