I am using version 4.2.2 of react-native-render-html. Given the following snippet:
# App.js
import React from 'react';
import HTML from 'react-native-render-html';
export default function App() {
return (
<HTML html='<a href="https://duckduckgo.com/">A Link To Press</a>' />
);
}
I would expect the web-browser to open when I press a link, but instead, nothing happens.