summaryrefslogtreecommitdiff
path: root/src/lib/home/components/Skeleton/PreferredBrandSkeleton.jsx
blob: 6bdd3c82d0333d4a6b564c4916e1b12b8a64faff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import BrandSkeleton from "@/core/components/elements/Skeleton/BrandSkeleton"

const PreferredBrandSkeleton = () => (
  <div className="grid grid-cols-4 gap-x-3">
    <BrandSkeleton />
    <BrandSkeleton />
    <BrandSkeleton />
    <BrandSkeleton />
  </div>
)

export default PreferredBrandSkeleton