// components/CourseList.jsx /** * Course List Component * * Displays a grid of course cards or skeleton placeholders while loading. */ // No imports needed as React is available globally const CourseList = ({ courses = [], isLoading = true, itemsPerPage = 6 }) => { console.log('CourseList rendering with:', { courses, isLoading, itemsPerPage }); // If loading, show skeleton cards if (isLoading) { return (