import { ResolveEmptyPlaceholderOptions } from '@/types/cskTypes'; import { DEFAULT_EMPTY_PLACEHOLDER } from '@/utils/createEmptyPlaceholderResolver'; import { TestimonialSlots } from '.'; export const TestimonialEmptyPlaceholder = ({ slotName }: ResolveEmptyPlaceholderOptions) => { switch (slotName) { case TestimonialSlots.TestimonialSecondaryImage: return { component: () =>
}; case TestimonialSlots.TestimonialContent: return { component: () => }; case TestimonialSlots.TestimonialPrimaryImage: return { component: () => }; case TestimonialSlots.TestimonialAuthor: return { component: () => }; default: return DEFAULT_EMPTY_PLACEHOLDER; } };