finished grade distribution ui

This commit is contained in:
Sriram Hariharan
2023-03-08 20:44:34 -06:00
parent 2562e65d66
commit c1910bacb0
5 changed files with 74 additions and 25 deletions

View File

@@ -16,7 +16,6 @@ interface Props {
* The popup that appears when the user clicks on a course for more details.
*/
export default function CoursePopup({ course, onClose }: Props) {
console.log(course);
return (
<Popup className={styles.popup} overlay onClose={onClose}>
<CourseHeader course={course} onClose={onClose} />