// A simple React component for a Course Card
const CourseCard = ({ title, instructor, progress }) => (
);
export default function Dashboard() {
return (
);
}
{title}
Teacher: {instructor}
{progress}% Complete
No comments