I'm using
Spectacle to create a slideshow web app, but I am having some trouble accessing my own redux store while inside the <Deck>
Component (from spectacle)
What I mean is I can access my own ReduxStore within my whole application, but for those component that are inside <Deck>
when I try to access store, I end up accessing Spectacle-Redux
e.g
<Deck>
<Slide>
<MyComponent />
</Slide>
</Deck>
In MyComponent I can't access my redux-store, instead I access Spectacle's one.
Is there a way to access my own redux inside <Deck />
?