컴퓨터
003 Props 소품
sayyesdoit
2019. 3. 18. 18:04
Props
대부분의 components 는 생성 시 서로 다른예를 들어 기본 React Native 구성 요소 중 하나가 Image입니다. 매개 변수를 사용하여 사용자 정의할 수 있습니다. 이러한 생성 매개변수를 props 라고 합니다.
예를 들어 기본적인 React Native components 중 하나가 image 입니다.
import React, { Component } from 'react';
import { AppRegistry, Image } from 'react-native';
export default class Bananas extends Component {
render() {
let pic = {
uri: 'https://upload.wikimedia.org/wikipedia/commons/d/de/Bananavarieties.jpg'
};
return (
<Image source={pic} style={{width: 193, height: 110}}/>
);
}
}
// skip this line if using Create React Native App
AppRegistry.registerComponent('AwesomeProject', () => Bananas);