I have a consts.ts file in my project, now.. I have
export const LINK1 = <a href='https://sample.com/'>LINK 1</a>
;
It doesn’t work. I want to have a hyperlink text which is “LINK 1”
export const LINK1 = `<a href='https://sample.com/'>LINK 1</a>`;
I want to have a hyperlink text which is “LINK 1”