Skip to content

Commit

Permalink
format loading card
Browse files Browse the repository at this point in the history
  • Loading branch information
nguyenvanhuan243 committed Apr 13, 2024
1 parent bc6dc95 commit 05570f7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions app/components/VideoCard/LoadingList/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ import { uniqueId } from 'lodash';
export default function LoadingList() {
return (
<div className='row'>
{ [1, 2, 3].map(() => (
<div key={uniqueId()} className='col-md-4' >
<div className='LoadingList-item animated-background' />
</div>
))
{[1, 2, 3, 4, 5, 6].map(() => (
<div key={uniqueId()} className='col-md-4' >
<div className='LoadingList-item animated-background' />
</div>
))
}
</div>
)
Expand Down

0 comments on commit 05570f7

Please sign in to comment.