import { ResolveEmptyPlaceholderOptions } from '@/types/cskTypes'; import { DEFAULT_EMPTY_PLACEHOLDER } from '@/utils/createEmptyPlaceholderResolver'; import { FooterSlots } from '.'; export const FooterEmptyPlaceholder = (props: ResolveEmptyPlaceholderOptions) => { switch (props.slotName) { case FooterSlots.FooterLogo: return { component: () =>
}; case FooterSlots.FooterCopyright: return { component: () => }; case FooterSlots.FooterContent: return { component: () => }; default: return DEFAULT_EMPTY_PLACEHOLDER; } };