123456789101112131415161718 |
- import React from 'react'
- import { Grid } from '@/shared/components'
- import { VideoTile } from './VideoTile'
- type SkeletonLoaderVideoGridProps = {
- videosCount?: number
- }
- export const SkeletonLoaderVideoGrid: React.FC<SkeletonLoaderVideoGridProps> = ({ videosCount = 10 }) => {
- return (
- <Grid>
- {Array.from({ length: videosCount }).map((_, idx) => (
- <VideoTile key={idx} />
- ))}
- </Grid>
- )
- }
|