123456789101112131415161718192021222324 |
- 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>;
-
- }
-
- }
|