@react-md/table
Version:
Create responsive data tables and accessible fixed tables
13 lines (12 loc) • 430 B
TypeScript
/// <reference types="react" />
/**
* A quick way to conditionally inherit the sticky context within a table. If
* the sticky prop was defined and a boolean, it will be used. Otherwise the
* inherited context value will be used.
* @internal
*/
export declare function useSticky(sticky: boolean | string | undefined): boolean;
/**
* @internal
*/
export declare const StickyTableProvider: import("react").Provider<boolean>;