import React from 'react' import styles from './ModalSelect.module.css' interface SelectOption { value: string label: string } interface Props { label: string value: string onChange: (value: string) => void options: SelectOption[] placeholder?: string required?: boolean className?: string } const ModalSelect: React.FC = ({ label, value, onChange, options, placeholder, required = false, className = '' }) => { return (
) } export default ModalSelect