This repository was archived by the owner on Jun 24, 2021. It is now read-only.

Description
Hello. Why not implement text support between tags?
<SelectableText>Value</SelectableText>
It is necessary for compatibility with react-native-htmlview eg
I had to make a wrapper. Lol
export const MySelectableText = (props) => {
return (
<SelectableText {...props} value={props.children}/>
);
}