import { Skeleton } from "@/components/ui/skeleton"; const STAGGER_MS = 60; function SkeletonBar({ className, style, originRight, }: { className?: string; style?: React.CSSProperties; originRight?: boolean; }) { return (
); } export function MessageListSkeleton() { let index = 0; return (
); }