// A simple React component for a Course Card const CourseCard = ({ title, instructor, progress }) => (

{title}

Teacher: {instructor}

{progress}% Complete

); export default function Dashboard() { return (

My Courses

); }

No comments

Powered by Blogger.