added deviceId, ExtensionStore, working on CoursePopup

This commit is contained in:
Sriram Hariharan
2023-03-04 20:33:35 -06:00
parent e99ba5864a
commit 46282a0406
15 changed files with 119 additions and 49 deletions

View File

@@ -0,0 +1,16 @@
import React from 'react';
import { Course } from 'src/shared/types/Course';
import styles from './CoursePopup.module.scss';
interface Props {
course: Course;
}
export default function CoursePopup({ course }: Props) {
return (
<div>
<h1>{course.fullName}</h1>
<p>{course.description}</p>
</div>
);
}