2025-04-24 13:11:28 +08:00

11 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)
}
}