import React from 'react'; import { motion } from 'framer-motion'; interface SkeletonCardProps { className?: string; } export const SkeletonCard: React.FC = ({ className = "" }) => { return (
); };