diff --git a/src/common/playlists/FeaturedPlays.jsx b/src/common/playlists/FeaturedPlays.jsx index 55acd641f..55b63ebd6 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