import React from 'react'; import Module from '../lib/Module'; import { StyleSheet, Text, View } from 'react-native'; export default class ViewComp extends Module{ constructor(props) { super(props); } display() { return ( ) } }