UNPKG

@navikt/ds-react

Version:

React components from the Norwegian Labour and Welfare Administration.

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