TopTenChannels.tsx 401 B

123456789101112131415
  1. import React from 'react'
  2. import { useMostFollowedChannelsAllTime } from '@/api/hooks'
  3. import { ChannelGallery } from './ChannelGallery'
  4. export const TopTenChannels = () => {
  5. const { channels, loading } = useMostFollowedChannelsAllTime({ limit: 10 })
  6. return (
  7. <section>
  8. <ChannelGallery hasRanking channels={channels} loading={loading} title="Top 10 Channels" />
  9. </section>
  10. )
  11. }