In my application, I have a H custom component that takes in a header and a subheader as props.
For my header prop, I want to concatenate the lodash expression with a string. See below my code.
<H
header= `${_.startCase(type)} SomeString`
subheader= "Lorem ipsum do eiusmod"
/>
I have tried the suggestions here https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals, but maybe because I am using lodash it is not working.