🌝Coding/🌟React-Native

[React Native] props

뿌야._. 2021. 7. 16. 16:10

props

 

Terminal에 설치

npm install prop-types

 

import PropTypes from "prop-types";

 

 

prop 넘겨줄때

 

//App.js

return <이름이름 temp={temp}>; //temp 값 넘겨줌
//이름이름.js

export default function 이름이름({temp}){
    return(
    <View>
        <Text>
            {temp}
        </Text>
    </View>
    );
}

이름이름.propTypes={
    temp:PropTypes.number.isRequired
}