UNPKG

rap-react

Version:

To make it easy for you to get started with GitLab, here's a list of recommended next steps.

17 lines 365 B
export const GetBrandName = (brandId) => { let brandName = ""; switch (brandId) { //TODO fill more case "SDI": brandName="Sonic"; case "BWW": brandName="BWW" case "JJ": brandName="JJ" case "ARB": default: { brandName = "Arby's"; } } return brandName; };