import { SkeletonSideImageCard } from './SkeletonSideImageCard'; import { SkeletonTopImageCard } from './SkeletonTopImageCard'; import React from 'react'; import { FiltersMap } from '@wix/bex-core'; import { GridBaseState } from '../../state'; export interface SkeletonCardByImagePlacementProps { state: GridBaseState; } export function SkeletonCardByImagePlacement( props: SkeletonCardByImagePlacementProps, ) { const { state } = props; const { imagePlacement } = state; return imagePlacement === 'side' ? ( ) : ( ); }