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: 618d010d7af62ffe453c448a86c40697ea95116e
4
- data.tar.gz: abc60819bca6eccabc901be4c51ac5811411d44d
3
+ metadata.gz: c189456f50861b52bdb07739afce550cbb2b078a
4
+ data.tar.gz: 63fdbed97a9edc51789f136c2bd7e1b883b79bfd
5
5
  SHA512:
6
- metadata.gz: 82fdc5343baeab49e32d4368961ac4dbb17c8faa5f73df27672841a754a1a1b1e6fcfa9cbe30ba943af2f97e841ba1bf8b640fcaa5e65bcbfbc783b8230e4c54
7
- data.tar.gz: 2daba1dd0443f54e1139cf01a692ce01d5f5465f068e14a93552960a50c8d01c2d7c71cf8823bce8dd47fdc3cd9ed575c6522ffa45aeeaeef512912378902f91
6
+ metadata.gz: 05eb488af3291d896b840f7a36462311ae1508da41cc42646c34c2537ee460745de6ecca167681c0af5ef1f9fbc01f148a94d5ba88a9581e5044aec7560a2c6c
7
+ data.tar.gz: 376c419af4f100e235b278de9891ee3d6ad141e4260d33186ab9ea4ad268e3d2da6e5b2666a3cfc5279dbee4ba81b3fd20e2e792eace275c9d29f2d31b95229a
@@ -0,0 +1,8 @@
1
+ .bordered-component
2
+ border: 2px solid gray
3
+ border-radius: 10px
4
+ margin: 10px 20px
5
+ padding: 20px 40px
6
+
7
+ h2
8
+ margin-top: 0
@@ -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
 
@@ -1,3 +1,3 @@
1
1
  module ReactRailsWebpack
2
- VERSION = "1.0.2"
2
+ VERSION = "1.0.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: react_rails_webpack
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Neurodynamic