import React from 'react'; import { Label } from 'reactstrap'; import classNames from 'classnames'; export type OptionType = { value: string | number | readonly string[] | undefined; label: React.ReactNode; }; type SelectProps = { label: string; name: string; valid?: boolean; signature: string; className: string; options?: OptionType[]; }; export const Select: React.FC = (props) => { const { label, name, valid = false, signature, className, options = [] } = props; return (
{signature}
); };