Commit c42ac1f

mo khan <mo@mokhan.ca>
2016-12-01 04:30:13
remove unused components.
1 parent f21269d
Changed files (2)
app/components/StatusBarBackground.js
@@ -1,12 +0,0 @@
-import React, { Component, View } from 'react';
-import { Text } from 'react-native';
-
-export default class StatusBarBackground extends Component {
-  render() {
-    return (
-      <View style={{backgroundColor: 'pink'}, this.props.style || {}}>
-        <Text>Hello</Text>
-      </View>
-    );
-  }
-}
app/components/ViewContainer.js
@@ -1,12 +0,0 @@
-import React, { Component } from 'react';
-import { View, Text } from 'react-native';
-
-export default class ViewContainer extends Component {
-  render() {
-    return (
-      <View>
-        <Text>Status bar</Text>
-      </View>
-    )
-  }
-}