Hi! This is a simple one:
Backend function creates a simple text variable:
Export function in backend:
let x=“this is a very long string text I don’t want to appear on my code so I am placing in the backend”
Frontend:
import function from backend.
console.log(x)
How do I do this for this particular SIMPLE case?
thx so much!