import React, {Component} from 'react'; import {Text, View} from 'react-native'; import WebView from 'react-native-webview'; const HTML = ` \n Alerts

`; type Props = {}; type State = {}; export default class Alerts extends Component { state = {}; render() { return ( ); } }