SniberbS
Reactiflux3y ago
3 replies
Sniberb

snowberb – 09-35 Jan 2

What's better?
const header = isPhone ? intl.formatMessage({ id: 'testimonials.titleMobile' }) : intl.formatMessage({ id: 'testimonials.title' });

or
const header = intl.formatMessage({ id: isPhone ? 'testimonials.titleMobile' : 'testimonials.title' });
Was this page helpful?