I'm fetching some data in app from WordPress site successfully. Some entities like "„" react native don't want to make like quotes and many more issues I have.
Is there some way to make HTML entities right in React Native App?
Thanks in advance.
import Entities from 'html-entities'
and putconst entities = new Entities(); entities.decode('');
inrender() { ... }
but it returns 'undefined is not a constructor'. Could you explain the steps? – Diversion