import React, { useState } from 'react'; import { Button, Text, View } from 'react-native'; // const styles = StyleSheet.create({ // container: { // alignItems: 'center', // }, // text: { // fontSize: 40 // } // }) type HelloWorldProps = { text: string; aNumber: number; } const HelloWorld = (props: HelloWorldProps) => { return ( {props.text} : {props.aNumber} ) } const Counter = () => { const [count, setCount] = useState(0); return (