import { SharedData } from '@/types/global'; import { Link, usePage } from '@inertiajs/react'; import { ShoppingCart } from 'lucide-react'; import { Button } from './ui/button'; const CourseCart = () => { const { cartCount } = usePage().props; return (
{cartCount && cartCount > 0 ? ( {cartCount} ) : null}
); }; export default CourseCart;