21 lines
563 B
TypeScript
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';
|