renamed panel to popup since that's kinda what it is lmao

This commit is contained in:
Sriram Hariharan
2023-03-05 20:50:40 -06:00
parent 295b466505
commit 6d69cd2548
6 changed files with 35 additions and 35 deletions

View File

@@ -0,0 +1,24 @@
import React from 'react';
import { Course } from 'src/shared/types/Course';
import Icon from '../../common/Icon/Icon';
import Popup from '../../common/Popup/Popup';
import styles from './CoursePopup.module.scss';
interface Props {
course: Course;
onClose: () => void;
}
/**
* The popup that appears when the user clicks on a course for more details.
*/
export default function CoursePopup({ course, onClose }: Props) {
return (
<Popup overlay>
<div className={styles.popupBody}>
<div className={styles.courseTitle}>{course.courseName}</div>
<div className={styles.courseDescription}>{course.uniqueId}</div>
</div>
</Popup>
);
}