glam/packages/hooks/src/index.ts
2025-12-21 00:01:54 +01:00

21 lines
563 B
TypeScript

/**
* @glam/hooks - Shared React hooks for GLAM frontends
*
* This package contains reusable hooks shared between:
* - bronhouder.nl (Heritage Custodian Portal)
* - archief.support (ArchiefAssistent)
*/
// UI behavior hooks
export * from './useInfiniteScroll';
export * from './useCollapsibleHeader';
export * from './useFullscreen';
// Utility hooks
export * from './useDebounce';
export * from './useLocalStorage';
// API hooks (require @tanstack/react-query)
export * from './useSparql';
export * from './useGeocoding';
export * from './useWikidata';