mirror of
https://github.com/portainer/portainer.git
synced 2025-07-19 05:19:39 +02:00
10 lines
260 B
TypeScript
10 lines
260 B
TypeScript
import { createRowContext } from '@@/datatables/RowContext';
|
|
|
|
interface RowContextState {
|
|
isOpenAmtEnabled: boolean;
|
|
groupName?: string;
|
|
}
|
|
|
|
const { RowProvider, useRowContext } = createRowContext<RowContextState>();
|
|
|
|
export { RowProvider, useRowContext };
|