Many articles mention that container components are used to collect data and dispatch actions. Presentation components are used to determine how this data is displayed. He also suggests that container components should never have their own style.
Here's the question:
I have 3 presentation components, all of them are consumed by one container component. The container component retrieves data and provides the necessary data to each presentation component.
Can I wrap and style presentation components in the styling container component. For example, would I like to style presentation components to use rendering in a grid?
source
share