react_on_rails 6.2.1.rc.2 → 6.2.1.rc.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: 7a073432c91324ede65463252a8d68140c226e27
|
|
4
|
+
data.tar.gz: 979acdd9f71dceb8f87c42fe6d0fa435f0e1acb8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b8f977f260bff83bf1c38b76b5b831c025783acda3c8ef79b9a77183c0de5f6d121492f827627dc14779c0dd0dffe4e527879dd3487845a2846ca7457bb2baab
|
|
7
|
+
data.tar.gz: 75d71b68e9882a10b032b8933c7df2cd47915654b88eec8bd7146c3f7d512f1eef71a740d68728909a0b3c044a03ee21156385032b54ef43f989f6bcb55dc1c2
|
|
@@ -3,7 +3,8 @@ import ReactOnRails from 'react-on-rails';
|
|
|
3
3
|
|
|
4
4
|
import HelloWorldContainer from '../containers/HelloWorldContainer';
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
// _railsContext is the Rails context, providing contextual information for rendering
|
|
7
|
+
const HelloWorldApp = (props, _railsContext) => (
|
|
7
8
|
<HelloWorldContainer {...props} />
|
|
8
9
|
);
|
|
9
10
|
|
data/package.json
CHANGED