UNPKG

subhasmitalmg-react-spreadsheet-import

Version:

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

8 lines (7 loc) 272 B
import type { Data } from "../../types"; type Props<T extends string> = { initialData: Data<T>[]; file: File; }; export declare const ValidationStep: <T extends string>({ initialData, file }: Props<T>) => import("react/jsx-runtime").JSX.Element; export {};