Skip to content

Commit 5e09553

Browse files
committed
Grammar!
1 parent 7917b0c commit 5e09553

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

example/bundle.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -20845,8 +20845,9 @@ var WithProps = (0, _css2.default)(_class = function (_React$Component) {
2084520845
return _react2.default.createElement(
2084620846
'div',
2084720847
null,
20848-
'Styled text! ',
20849-
this.props.color
20848+
'Styled ',
20849+
this.props.color,
20850+
' text!'
2085020851
);
2085120852
}
2085220853
}]);

example/withprops.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ export default class WithProps extends React.Component {
2020
}
2121

2222
render () {
23-
return <div>Styled text! {this.props.color}</div>
23+
return <div>Styled {this.props.color} text!</div>
2424
}
2525
};

0 commit comments

Comments
 (0)