If I'm using the same react/redux component twice, will they share state?

Viewed 3387

If I had a component, which was loaded into a page, accepted a few props, made a couple of API calls and rendered a list, would they share the same redux store?

Say for example...

<Trending data-limit=5 data-offset=0 />
<div>Something here</div>
<Trending data-limit=5 data-offset-5 />

I have something similar to this and they seem to override each other.

2 Answers
Related