react-url-table
Version:
Smart and flexible table component built with React and for React projects. based on React16 hooks and mobx-react-lite
5 lines (4 loc) • 435 B
TypeScript
import React from 'react';
import { IStore, ITableProps } from "../@typings/types";
export declare const TableContext: React.Context<IStore>;
export declare const StoreProvider: (props: React.PropsWithChildren<ITableProps>) => React.ReactElement<any, string | ((props: any) => React.ReactElement<any, string | any | (new (props: any) => React.Component<any, any, any>)> | null) | (new (props: any) => React.Component<any, any, any>)>;