Skip to content

Commit

Permalink
card type
Browse files Browse the repository at this point in the history
  • Loading branch information
eanders-ms committed Feb 23, 2024
1 parent 750e6c0 commit b8477ec
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions teachertool/src/types/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,15 @@ export type ModalType = "catalog-display" | "import-rubric";

export type TabName = "home" | "rubric" | "results";

export type CardType = "rubric-resource";

// Rubric Card types that can be appear in the carousel
export type CarouselCard = {
cardType: string;
cardType: CardType;
};

export type CarouselRubricResourceCard = CarouselCard & {
cardType: "rubric-card";
cardType: "rubric-resource";
cardTitle: string;
imageUrl: string;
rubricUrl: string;
Expand Down

0 comments on commit b8477ec

Please sign in to comment.