画像ソースとタイトルを、React Nativeのカスタムメイドのステートレスコンポーネントに、小道具として送信しようとしています。 (画像ソースとタイトル)反応ネイティブのステートレスコンポーネントへの小道具の送信
props.imageSource行がエラーを引き起こしています。
がconst MainPageButton = (props) => {
var imageSource = require({props.imageSource});
return (
<TouchableOpacity>
<Image source={imageSource} />
<Text>{props.title}</Text>
</TouchableOpacity>
)
}