generated from bcgov/quickstart-openshift
-
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.
* feat: initial commit from sample app * feat: remove env file * feat: add last merge related to typography * feat: changes from Nicola sample app * Fixing issues from moving to the new repo * Empty commit to trigger ci * First draft of the dashboard screen * Improving styling * Adding status item component * Styling adjustments * Fixing Lint issues * feat: bring pending pull requests from sample app * feat: bring compliance file from main * Improving styling * feat: overflow component style adjustments * feat: highlight favorite card style * feat: new field and type * feat: dehighlight added * feat: hightlight and dehighlight function created at favorite activities * fix: fixed duplicated colors import and variable * fix: style and organization fixes * fix: revert conflits * fix: removing old files * fix: reverting login protection Co-authored-by: Ricardo Campos <ricardo.campos@encora.com> Co-authored-by: Nicola Saglioni <nicola.saglioni@mobeus.com>
- Loading branch information
1 parent
7c01301
commit 77b5c22
Showing
6 changed files
with
150 additions
and
55 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,10 @@ | ||
type Card = { | ||
type CardType = { | ||
id: string; | ||
icon: string; | ||
header: string; | ||
description: string; | ||
link: string; | ||
highlighted?: boolean; | ||
} | ||
|
||
export default Card; | ||
export default CardType; |