File tree Expand file tree Collapse file tree 4 files changed +18
-4
lines changed Expand file tree Collapse file tree 4 files changed +18
-4
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,11 @@ class COMPONENT_NAME extends Component {
77 }
88
99 render ( ) {
10- return < div className = "COMPONENT_NAME" />
10+ return (
11+ < div className = "COMPONENT_NAME" >
12+ COMPONENT_NAME
13+ </ div >
14+ )
1115 }
1216}
1317
Original file line number Diff line number Diff line change @@ -6,7 +6,11 @@ class COMPONENT_NAME extends Component {
66 static propTypes = { }
77
88 render ( ) {
9- return < div className = "COMPONENT_NAME" />
9+ return (
10+ < div className = "COMPONENT_NAME" >
11+ COMPONENT_NAME
12+ </ div >
13+ )
1014 }
1115}
1216
Original file line number Diff line number Diff line change @@ -2,7 +2,9 @@ import React from 'react';
22import PropTypes from 'prop-types' ;
33
44const COMPONENT_NAME = ( ) => (
5- < div className = "COMPONENT_NAME" />
5+ < div className = "COMPONENT_NAME" >
6+ COMPONENT_NAME
7+ </ div >
68) ;
79
810COMPONENT_NAME . propTypes = { }
Original file line number Diff line number Diff line change @@ -7,7 +7,11 @@ class COMPONENT_NAME extends Component {
77 state = { }
88
99 render ( ) {
10- return < div className = "COMPONENT_NAME" />
10+ return (
11+ < div className = "COMPONENT_NAME" >
12+ COMPONENT_NAME
13+ </ div >
14+ )
1115 }
1216}
1317
You can’t perform that action at this time.
0 commit comments