+
{enrollmentInfo.name}
+
{enrollmentInfo.abbreviation}
+
Status: {enrollmentInfo.status}
+
Start Date: {formatDate(enrollmentInfo.startDate)}
+
End Date: {formatDate(enrollmentInfo.renewalDate)}
+
Authorization Code: {enrollmentInfo.authNumber}
+ {regular && (
+
+ Session Time:
+ {" " +
+ enrollmentInfo.sessionTime.start_time +
+ " - " +
+ enrollmentInfo.sessionTime.end_time}
+
+ )}
+ {regular &&
Days of the Week: {enrollmentInfo.schedule.join(", ")}
}
+
+ );
+}
+
+export default function StudentProfilePrintComponent({
+ data,
+ contentRef,
+ enrollments,
+}: PrintComponentProps) {
+ return (
+