import React from 'react'; import Skeleton from '@/components/ui/Skeleton.tsx'; // FIX: Use React.FC to correctly type the component and allow for React's `key` prop. const ActivityItemSkeleton: React.FC<{ isLastItem: boolean }> = ({ isLastItem }) => (