Skip to content

Instantly share code, notes, and snippets.

@DenisCangemi
Created January 25, 2021 00:48
Show Gist options
  • Save DenisCangemi/ab8faa405936decccda7cfd1549ddd0a to your computer and use it in GitHub Desktop.
Save DenisCangemi/ab8faa405936decccda7cfd1549ddd0a to your computer and use it in GitHub Desktop.
getAvailabilityColor(availability:string) {
switch(availability){
case 'Available': return 'green'
case 'Few Items Left': return 'yellow'
case 'Out of Stock': return 'red'
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment