/** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @format * @flow */ 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 ( ); } }