ViewComp.js 292 B

1234567891011121314151617181920
  1. import React from 'react';
  2. import Module from '../lib/Module';
  3. import { StyleSheet, Text, View } from 'react-native';
  4. export default class ViewComp extends Module{
  5. constructor(props) {
  6. super(props);
  7. }
  8. display() {
  9. return (
  10. <View key={Math.random()} >
  11. </View>)
  12. }
  13. }