1234567891011121314151617 |
- import React from 'react';
- import {StyleSheet, View, Text , Button} from 'react-native';
- import { TextInput } from 'react-native';
- export default class ModuleBar {
- constructor(){
- }
- render(){
- return(
- <Text> This is the Module Bar</Text>
- )
- }
- }
|