react_rails_webpack 1.0.2 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c189456f50861b52bdb07739afce550cbb2b078a
|
|
4
|
+
data.tar.gz: 63fdbed97a9edc51789f136c2bd7e1b883b79bfd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 05eb488af3291d896b840f7a36462311ae1508da41cc42646c34c2537ee460745de6ecca167681c0af5ef1f9fbc01f148a94d5ba88a9581e5044aec7560a2c6c
|
|
7
|
+
data.tar.gz: 376c419af4f100e235b278de9891ee3d6ad141e4260d33186ab9ea4ad268e3d2da6e5b2666a3cfc5279dbee4ba81b3fd20e2e792eace275c9d29f2d31b95229a
|
|
@@ -8,8 +8,8 @@ export default React.createClass({
|
|
|
8
8
|
return { greeting: 'Hello there, friend!' }
|
|
9
9
|
},
|
|
10
10
|
render () {
|
|
11
|
-
return <div>
|
|
12
|
-
<h2>This is the "Hello" component from 'components/Hello.jsx'</h2>
|
|
11
|
+
return <div className='bordered-component'>
|
|
12
|
+
<h2>This is the "Hello" component from 'client/src/components/Hello.jsx'</h2>
|
|
13
13
|
<p><strong>Details</strong>: {this.props.details}</p>
|
|
14
14
|
<p>Current greeting: {this.state.greeting}</p>
|
|
15
15
|
|
|
@@ -9,8 +9,8 @@ export const HelloWithRedux = React.createClass({
|
|
|
9
9
|
setGreeting: React.PropTypes.func.isRequired
|
|
10
10
|
},
|
|
11
11
|
render () {
|
|
12
|
-
return <div>
|
|
13
|
-
<h2>This is the "HelloWithRedux" component from 'components/HelloWithRedux.jsx'</h2>
|
|
12
|
+
return <div className='bordered-component'>
|
|
13
|
+
<h2>This is the "HelloWithRedux" component from 'client/src/components/HelloWithRedux.jsx'</h2>
|
|
14
14
|
<p><strong>Details</strong>: {this.props.details}</p>
|
|
15
15
|
<p>Current greeting: {this.props.greeting}</p>
|
|
16
16
|
|