UNPKG

csv-import-react

Version:

Open-source CSV, TSV, and XLS/XLSX file importer for React and JavaScript

11 lines (10 loc) 338 B
import { TemplateColumn } from "../../../types"; export default function useTemplateTable(fields?: TemplateColumn[]): { [x: string]: string | { raw: string; content: import("react/jsx-runtime").JSX.Element; } | { raw: number; content: import("react/jsx-runtime").JSX.Element; }; }[];