File tree 1 file changed +3
-34
lines changed
1 file changed +3
-34
lines changed Original file line number Diff line number Diff line change @@ -46,19 +46,6 @@ const tests = {
46
46
});
47
47
` ,
48
48
} ,
49
- {
50
- code : `
51
- const Hello = React.createClass({
52
- render: function() {
53
- const { name } = styles;
54
- return <Text textStyle={name}>Hello {this.props.name}</Text>;
55
- }
56
- });
57
- const styles = StyleSheet.create({
58
- name: {}
59
- });
60
- ` ,
61
- } ,
62
49
{
63
50
code : `
64
51
const Hello = React.createClass({
@@ -69,7 +56,7 @@ const tests = {
69
56
const styles = StyleSheet.create({
70
57
name: {}
71
58
});
72
- ` ,
59
+ ` ,
73
60
} ,
74
61
{
75
62
code : `
@@ -88,26 +75,8 @@ const tests = {
88
75
code : `
89
76
const styles = StyleSheet.create({
90
77
name: {}
91
- });
92
- const Hello = React.createClass({
93
- render: function() {
94
- return <Text style={styles.name}>Hello {this.props.name}</Text>;
95
- }
96
- });
97
- ` ,
98
- } ,
99
- {
100
- code : `
101
- const styles = StyleSheet.create({
102
- name: {}
103
- });
104
- const Hello = React.createClass({
105
- render: function() {
106
- const { name } = styles;
107
- return <Text style={name}>Hello {this.props.name}</Text>;
108
- }
109
- });
110
- ` ,
78
+ })
79
+ ` ,
111
80
} ,
112
81
{
113
82
code : `
You can’t perform that action at this time.
0 commit comments