Hey is a decentralized and permissionless social media app built with Lens Protocol 馃尶
1import { memo } from "react";
2import SingleAccountShimmer from "./SingleAccountShimmer";
3
4const AccountListShimmer = () => {
5 return (
6 <div className="divide-y divide-gray-200 dark:divide-gray-700">
7 {Array.from({ length: 5 }).map((_, index) => (
8 <SingleAccountShimmer
9 className="p-5"
10 key={index}
11 showFollowUnfollowButton
12 />
13 ))}
14 </div>
15 );
16};
17
18export default memo(AccountListShimmer);