1234567891011121314151617181920 |
- 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 (
- <View key={Math.random()} >
-
- </View>)
- }
- }
|