Created
December 9, 2019 10:01
-
-
Save whs/ea00c223a80d117251ecc490d855cd4a to your computer and use it in GitHub Desktop.
This file contains hidden or 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
// from this | |
I18n.t(`business.${domain}.call`) | |
// to this | |
switch(domain){ | |
case Domain.FOOD: | |
return I18n.t('business.FOOD.call') | |
case Domain.BEAUTY: | |
return I18n.t('business.BEAUTY.call') | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment