React i18n break lines in JSON String
问题 I'm working with i18next for react https://github.com/i18next/react-i18next. I'm struggling to break lines within the string in my JSON language file. This is what I already tried, which doesn't break a new line: line: "This is a line. \n This is another line. \n Yet another line" , line: ("This is a line."+ <br/> + "This is another line. \n Yet another line") , line: ('This is a line. <br/> This is another line. \n Yet another line') , I obviously try to make a new line after each sentence.