-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
108 additions
and
190 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
import { Course } from "./../types/TypeCourse" | ||
|
||
export const EMPTYCOURSE: Course = { code: "N/A", title: "Title NULL", description: "No course", seasons: [], distribution: [] }; | ||
export const EMPTYCOURSE: Course = { codes: ["N/A"], title: "Title NULL", credit: 1, areas: [], skills: [], seasons: [] }; | ||
|
||
export const CPSC201: Course = { code: "CPSC 201", title: "Introduction", description: "", seasons: [], distribution: [] }; | ||
export const CPSC202: Course = { code: "CPSC 202", title: "Math Tools", description: "", seasons: [], distribution: [] }; | ||
export const CPSC223: Course = { code: "CPSC 223", title: "Data Structures", description: "", seasons: [], distribution: [] }; | ||
export const CPSC323: Course = { code: "CPSC 323", title: "Systems", description: "", seasons: [], distribution: [] }; | ||
export const CPSC365: Course = { code: "CPSC 365", title: "Algorithms", description: "", seasons: [], distribution: [] }; | ||
export const CPSC201: Course = { codes: ["CPSC 201"], title: "Introduction", credit: 1, areas: [], skills: [], seasons: [] }; | ||
export const CPSC202: Course = { codes: ["CPSC 202"], title: "Math Tools", credit: 1, areas: [], skills: [], seasons: [] }; | ||
export const CPSC223: Course = { codes: ["CPSC 223"], title: "Data Structures", credit: 1, areas: [], skills: [], seasons: [] }; | ||
export const CPSC323: Course = { codes: ["CPSC 323"], title: "Systems", credit: 1, areas: [], skills: [], seasons: [] }; | ||
export const CPSC365: Course = { codes: ["CPSC 365"], title: "Algorithms", credit: 1, areas: [], skills: [], seasons: [] }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.