UNPKG

@navikt/ds-react

Version:

React components from the Norwegian Labour and Welfare Administration.

7 lines (6 loc) 230 B
import { SortState } from "./types"; export interface TableContextProps { onSortChange?: (sortKey: string) => void; sort?: SortState; } export declare const TableContext: import("react").Context<TableContextProps | null>;