react-export-table-to-excel
Version:
It allows you to export an HTML table just by sending the table reference and the name with which you want the file to be saved
7 lines (6 loc) • 294 B
TypeScript
import { FC } from "react";
import { IProps } from "./interfaces/react-export-table-excel";
import { useDownloadExcel } from "./hooks/useExcel";
import { downloadExcel } from "./lib";
declare const DownloadTableExcel: FC<IProps>;
export { DownloadTableExcel, useDownloadExcel, downloadExcel };