Hey is a decentralized and permissionless social media app built with Lens Protocol 馃尶
at main 11 lines 225 B view raw
1import cn from "@/helpers/cn"; 2 3interface SkeletonProps { 4 className?: string; 5} 6 7const Skeleton = ({ className = "" }: SkeletonProps) => { 8 return <div className={cn("shimmer", className)} />; 9}; 10 11export default Skeleton;