UNPKG

subhasmitalmg-react-spreadsheet-import

Version:

React spreadsheet import for xlsx and csv files with column matching and validation steps

11 lines (10 loc) 392 B
import type { SelectOption } from "../../types"; interface Props { onChange: (value: SelectOption | null) => void; value?: SelectOption; options: readonly SelectOption[]; placeholder?: string; name?: string; } export declare const MatchColumnSelect: ({ onChange, value, options, placeholder, name }: Props) => import("react/jsx-runtime").JSX.Element; export {};