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
}
'🌝Coding > 🌟React-Native' 카테고리의 다른 글
[React Native] Bottom Bar & Transfer page_ navigation v5 (0) | 2021.07.21 |
---|---|
[React Native] icon 사용 (0) | 2021.07.20 |
[React Native] LOGIC & API (0) | 2021.07.13 |
[React Native] INTRODUCTION & Setting (0) | 2021.07.12 |