import React from 'react'; import Module from '../lib/Module'; import { View } from 'react-native'; export default class ViewComp extends Module { constructor(props) { super(props); } display() { return <View> {this.props.children} </View>; } }