export type ParamType = number | string;
export type Course = {
    courseName: string;
    areaName: string;
    teacherName: string;
    id: ParamType;
    teacherUid: ParamType;
};
