You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Current behavior:
We need a Card component so as to reuse on the project description page based on the design
Expected behavior:
Anyone should be able to use the card component in this way:
<Card onClick={someHandler} detail={true} detailText="Click Here">
<div className="title">This is the title</div>
<div className="description">This is the description</div>
</Card>
onClick can be an optional property. detail can be false by default and is optional. detailText is a configurable and optional string parameter in case there's a link below the description with a default value of 'Read More'.
There are basically three main variations of this component.
The text was updated successfully, but these errors were encountered:
I'm submitting a ...
Current behavior:
We need a Card component so as to reuse on the project description page based on the design
Expected behavior:
Anyone should be able to use the card component in this way:
onClick
can be an optional property.detail
can be false by default and is optional.detailText
is a configurable and optional string parameter in case there's alink
below the description with a default value of 'Read More'.There are basically three main variations of this component.
The text was updated successfully, but these errors were encountered: