From 9d1c764efd27c699a965f33a976b6661a71317da Mon Sep 17 00:00:00 2001 From: riteshrana12-dev Date: Fri, 1 May 2026 02:36:48 +0530 Subject: [PATCH] feat(common): add skeleton loading state to FeaturedPlays --- src/common/playlists/FeaturedPlays.jsx | 44 +++++++++++++++++++++++++- 1 file changed, 43 insertions(+), 1 deletion(-) diff --git a/src/common/playlists/FeaturedPlays.jsx b/src/common/playlists/FeaturedPlays.jsx index 55acd641f6..55b63ebd62 100644 --- a/src/common/playlists/FeaturedPlays.jsx +++ b/src/common/playlists/FeaturedPlays.jsx @@ -1,6 +1,48 @@ import PlayThumbnail from './PlayThumbnail'; import useFeaturedPlays from 'common/hooks/useFeaturedPlays'; +const PlayCardSkeleton = () => ( +
  • +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + +
  • +); + const FeaturedPlays = () => { const [loading, error, data] = useFeaturedPlays(); const success = !loading && !error && !!data.length; @@ -11,7 +53,7 @@ const FeaturedPlays = () => { Trending Plays