Hi i have a js file which is exporting data to my components how do i make some of the text bold and force a line break? I've tried \n but that doesn't work. I've annotated where i want the line break and where i want the text to be bold.
export const productData = [
...
desc: "{bold} Heavy on features.Light on price. {line break here} Stay connected. Even without your phone. With powerful features to help keep you connected, active, healthy and safe, Apple Watch SE is a lot of watch for less.",
]
<p className="mt-3 md:mt-6 text-secondary-gray"> {product.desc} </p>desc = (TEXT BEFORE LINE BREAK <br /> TEXT AFTER LINE BREAK);This creates a JSX tag and supports normal JSX line breaks and so forth.<br />, not a br element