Commit c42ac1f
Changed files (2)
app
components
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>
- )
- }
-}