import React, {Component} from 'react'; import {Text, View} from 'react-native'; import WebView from 'react-native-webview'; const HTML = ` \n
HTML content in transparent body.
`; type Props = {}; type State = { backgroundColor: string, }; export default class Background extends Component