Hi, does anyone have experience with the kotlin-re...
# javascript
l
Hi, does anyone have experience with the kotlin-react-redux wrapper? I am having a hard time connecting my container to the store.
g
Last week there was an article about the use of redux from a Kotlin application. Kvision redux internally use the react Kotlin wrapper. You should check the example. https://kotlinlang.slack.com/archives/C0BJ0GTE2/p1553600855138600
l
Thank you, sadly this only displays how to apply Redux itself (actions, reducers, store) which I have implemented in my project too. What I am trying to do now is connect the store to a React component by using this wrapper for the react-redux library: https://github.com/JetBrains/kotlin-wrappers/tree/master/kotlin-react-redux I can't seem to figure out what all the type parameters are/do for the rConnect function and sadly can't seem to find an example where this is implemented.
👍 1
p
@Lawik did you find how to properly use rConnect? I have the same problem.