opt-table
Version:
A Responsive and Customizable Rich Table
5 lines (4 loc) • 300 B
TypeScript
import React from "react";
import { OptTableInterface, OptTableRefProps } from "./types";
declare const CustomTable: <T>(props: OptTableInterface<T> & React.RefAttributes<OptTableRefProps>) => React.ReactElement<any, string | React.JSXElementConstructor<any>> | null;
export default CustomTable;