import React from "react"; import { View, Text, StyleSheet, } from "react-native"; // TOOL DESCRIPTIONS const bodyEJScreen = "EJScreen es..... Presione para ir al enlace." const bodyCEJST = "CEJST es..... Presione para ir al enlace." const bodyEJAtlas = "EJAtlas es..... Presione para ir al enlace." const bodyIPCC = "El ''Intergovernmental Panel on Climate Change'' o IPCC es..... Presione para ir al enlace." const Analisis = () => { return ( {/* TAB TITLE CODE*/} {/* TAB TITLE */} Enlaces a Herramientas de AnĂ¡lisis Externas {/* FIRST TOOL CODE*/} {/* FIRST TOOL TITLE */} 1) Linking.openURL('https://ejscreen.epa.gov/mapper/') }> Enlace a EJScreen {/* FIRST TOOL BODY */} {'\u002D'} {bodyEJScreen} {/* SECOND TOOL CODE*/} {/* SECOND TOOL TITLE */} 2) Linking.openURL('https://screeningtool.geoplatform.gov/en/#3/33.47/-97.5') }> Enlace a CEJST {/* SECOND TOOL BODY */} {'\u002D'} {bodyCEJST} {/* THIRD TOOL CODE*/} {/* THIRD TOOL TITLE */} 3) Linking.openURL('https://ejatlas.org/') }> Enlace a EJAtlas {/* THIRD TOOL BODY */} {'\u002D'} {bodyEJAtlas} {/* FOURTH TOOL CODE*/} {/* FOURTH TOOL TITLE */} 4) Linking.openURL('https://www.ipcc.ch/') }> Enlace al IPCC {/* FOURTH TOOL BODY */} {'\u002D'} {bodyIPCC} )} const styles = StyleSheet.create({ Tab: { fontSize: 30, textAlign: "center", marginTop: "12%", marginLeft: "1.4%", marginRight: "1.4%" }, Number: { fontSize: 23, textAlign: "left", marginLeft: "2.5%", marginTop: "5.5%", flexDirection: 'row' }, Title: { fontSize: 23, textAlign: "left", marginTop: "5.5%", color: "#6495ed", flex: 0, paddingLeft: 6 }, Body: { fontSize: 18, textAlign: "left", marginTop: "2%", flex: 1, paddingLeft: 5 }, Bullet: { fontSize: 18, textAlign: "left", marginLeft: "6%", marginTop: "2%", flexDirection: 'row' } }); export default Analisis;