in description html tAG WHEN I HAVE SHOW THIS IN REACT NATIVE ITS SHOW WITH TAG I WANT TO SHOE ONLY TEXT IN REACT NATIVE code example
Example: html to react native
import React, { Component } from 'react';
import { WebView } from 'react-native';
class MyInlineWeb extends Component {
render() {
return (
<WebView
originWhitelist={['*']}
source={{ html: '<h1>Hello world</h1>' }}
/>
);
}
}