footer.js 209 B

123456789101112
  1. import React, { Component } from 'react';
  2. import { View, Text, StyleSheet } from 'react-native';
  3. class Footer extends Component {
  4. render() {
  5. return (
  6. <View />
  7. );
  8. }
  9. }
  10. export default Footer;