latex-ub/services/web/frontend/stories/hooks/use-meta.tsx
2025-05-05 12:24:05 +00:00

10 lines
301 B
TypeScript

import { PartialMeta } from '@/utils/meta'
/**
* Set values on window.metaAttributesCache, for use in Storybook stories
*/
export const useMeta = (meta: PartialMeta) => {
for (const [key, value] of Object.entries(meta)) {
window.metaAttributesCache.set(key as keyof PartialMeta, value)
}
}