Components with containers
See original GitHub issueLoving the storybook! Great job, I already added it to several of my packages to showcase their interfaces.
I’ve bumped into an issue, when a component contains a container that snatches its own data. The data are taken reactively from Meteor source. What is the workflow to accomodat these types of components?
<Component>
<ContainerOfAnother />
</Component>
Issue Analytics
- State:
- Created 7 years ago
- Reactions:3
- Comments:21 (12 by maintainers)
Top Results From Across the Web
Presentational and Container Components | by Dan Abramov
I call them Container and Presentational components* but I also heard Fat and Skinny, Smart and Dumb, Stateful and Pure, Screens and Components,...
Read more >Understanding the Container Component Pattern with React ...
The Container Component pattern(or simply Component pattern) ensures to separate the data fetching logic, managing state from the presentational ...
Read more >Difference between component and container in react redux
Container is an informal term for a React component that is connect -ed to a redux store. Containers receive Redux state updates and...
Read more >What is the difference between component and container in ...
Container is an informal term for a component that is connected to a Redux store. Containers subscribe to Redux state updates and dispatch...
Read more >Components and Containers
Recall that a container that implements the IContainer interface has Add, Remove, and Components class members. The Components property can be used to...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@sokki See: Stubbing React Containers for Testing
@gavriguy great. And you can publish your storybook to GitHub pages. Checkout react-cdk for this. It has the sample code to do it.