UNPKG

subhasmitalmg-react-spreadsheet-import

Version:

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

9 lines (8 loc) 320 B
import type { SelectOption } from "../../types"; interface Props { onChange: (value: SelectOption | null) => void; value?: SelectOption; options: readonly SelectOption[]; } export declare const TableSelect: ({ onChange, value, options }: Props) => import("react/jsx-runtime").JSX.Element; export {};