import React from 'react'; import { Course } from 'src/shared/types/Course'; import { UserSchedule } from 'src/shared/types/UserSchedule'; import Popup from '../../common/Popup/Popup'; import CourseDescription from './CourseDescription/CourseDescription'; import CourseHeader from './CourseHeader/CourseHeader'; import styles from './CoursePopup.module.scss'; import GradeDistribution from './GradeDistribution/GradeDistribution'; interface Props { course: Course; activeSchedule?: UserSchedule; onClose: () => void; } /** * The popup that appears when the user clicks on a course for more details. */ export default function CoursePopup({ course, activeSchedule, onClose }: Props) { return ( ); }