import React from 'react'; import { Button, Text, View, } from 'react-native'; const Func_comp = (props) => { function SignUp2() { alert("Hi, Signup Class with other func.") } const SignUp = (Num) => { alert("Hi, Signup Class with other func." + Num) } console.warn(props) return ( <View> <Button title="Login" onPress={()=>alert("Hi, Func Component!")}/> <Button title="SignUp" onPress={SignUp.bind(this, "100")}/> <Text>{props.Data}</Text> </View> ) } export default Func_comp