I store every text in my application in a settings.ts file, but I need to add some breaklines and \n appears not to work. Is there any other way I should could these breaklines? I'm working with Next.js, React and TypeScript.
export const text = 'this is my text that \nshould have a breakline'
<div>{text}</div>
{it}
)}