Skip to content

Commit e593594

Browse files
committed
Need to test if iOS works
1 parent a915aa0 commit e593594

File tree

1 file changed

+1
-40
lines changed

1 file changed

+1
-40
lines changed

index.ios.js

Lines changed: 1 addition & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -7,47 +7,8 @@
77
import React, { Component } from 'react';
88
import {
99
AppRegistry,
10-
StyleSheet,
11-
Text,
12-
View
1310
} from 'react-native';
1411

15-
class Soccer extends Component {
16-
render() {
17-
return (
18-
<View style={styles.container}>
19-
<Text style={styles.welcome}>
20-
Welcome to React Native!
21-
</Text>
22-
<Text style={styles.instructions}>
23-
To get started, edit index.ios.js
24-
</Text>
25-
<Text style={styles.instructions}>
26-
Press Cmd+R to reload,{'\n'}
27-
Cmd+D or shake for dev menu
28-
</Text>
29-
</View>
30-
);
31-
}
32-
}
33-
34-
const styles = StyleSheet.create({
35-
container: {
36-
flex: 1,
37-
justifyContent: 'center',
38-
alignItems: 'center',
39-
backgroundColor: '#F5FCFF',
40-
},
41-
welcome: {
42-
fontSize: 20,
43-
textAlign: 'center',
44-
margin: 10,
45-
},
46-
instructions: {
47-
textAlign: 'center',
48-
color: '#333333',
49-
marginBottom: 5,
50-
},
51-
});
12+
import Soccer from './Soccer';
5213

5314
AppRegistry.registerComponent('Soccer', () => Soccer);

0 commit comments

Comments
 (0)