import React from "react"; import { View } from "react-native"; import { WebView } from "react-native-webview"; import { BigButton } from "./components/atom/BigButton"; export default ({ navigation: { navigate }, route }) => { const { info, goTo, useShow } = route.params; const onExit = () => { navigate(goTo || "Apps"); useShow && useShow(); }; return ( ); }; const styles = { height: "100%", backgroundColor: "#0099CC" };