ModuleBar.js 258 B

1234567891011121314151617
  1. import React from 'react';
  2. import {StyleSheet, View, Text , Button} from 'react-native';
  3. import { TextInput } from 'react-native';
  4. export default class ModuleBar {
  5. constructor(){
  6. }
  7. render(){
  8. return(
  9. <Text> This is the Module Bar</Text>
  10. )
  11. }
  12. }