8 lines
282 B
JavaScript
8 lines
282 B
JavaScript
|
import { useOverflowContext } from './overflowContext';
|
||
|
/**
|
||
|
* @param id - unique identifier for a group of overflow items
|
||
|
* @returns visibility state of the group
|
||
|
*/ export function useIsOverflowGroupVisible(id) {
|
||
|
return useOverflowContext((ctx)=>ctx.groupVisibility[id]);
|
||
|
}
|