创建一个自定义的React Native组件

时间:2020-02-10 19:39:45

标签: reactjs react-native

我不是反应专家,我找不到解决方法,但是如何创建可以像这样使用的自定义组件:

make (e=2) the system cannot find the file specified

在什么地方,我可以放置任何想要的东西。 MyComponent可以是:

<MyComponent>
   <View></View>
   <View></View>
        ...
</MyComponent>

这有可能实现吗?

非常感谢:)

1 个答案:

答案 0 :(得分:2)

像这样更改您的MyComponent

<View>
   <View> 
   </View> <-- Header 
   <View> 
   </View> <-- Content

    {this.props.children}

   <View>
   </View> <-- Footer
</View>