import React from 'react'; import { motion } from 'framer-motion'; const SkeletonCard = () => (
); const SkeletonGrid = ({ count = 6 }) => (
{Array.from({ length: count }, (_, i) => ( ))}
); const SkeletonLoader = ({ type = 'grid', count }) => { if (type === 'grid') { return ; } return ; }; export default SkeletonLoader;