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.",
]
. – Blake Ottinger Apr 28 '22 at 14:59
{product.desc}
``` – Imad Apr 28 '22 at 15:01TEXT AFTER LINE BREAK);` This creates a JSX tag and supports normal JSX line breaks and so forth. – Blake Ottinger Apr 28 '22 at 15:04
`, not a br element – evolutionxbox Apr 28 '22 at 15:06
tag in reactjs between two strings?](https://stackoverflow.com/questions/45935733/how-to-add-a-br-tag-in-reactjs-between-two-strings) – evolutionxbox Apr 28 '22 at 15:07
just outputs it as text – Imad Apr 28 '22 at 15:09