UNPKG

subhasmitalmg-react-spreadsheet-import

Version:

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

8 lines (7 loc) 313 B
import type { RawData } from "../../types"; type SelectHeaderProps = { data: RawData[]; onContinue: (headerValues: RawData, data: RawData[]) => Promise<void>; }; export declare const SelectHeaderStep: ({ data, onContinue }: SelectHeaderProps) => import("react/jsx-runtime").JSX.Element; export {};