Skip to content

Commit

Permalink
Merge pull request vasanthk#91 from anton6/patch-2
Browse files Browse the repository at this point in the history
Typo in Presentational and Container components
  • Loading branch information
vasanthk authored Nov 14, 2017
2 parents 3c72718 + 9d00df9 commit f675ef4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions patterns/25.presentational-vs-container.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export default class ClockContainer extends React.Component {
};
```
#### Presentational component
Presentational components are concert with how the things look. They have the additional markup needed for making the page pretty.
Presentational components are concerned with how the things look. They have the additional markup needed for making the page pretty.
Such components are not bound to anything and have no dependencies.
Very often implemented as a stateless functional components they don't have internal state.

Expand Down Expand Up @@ -132,4 +132,4 @@ It will be really helpful if we want to switch from digital to analog clock repr
### Related links:
- https://medium.com/@dan_abramov/smart-and-dumb-components-7ca2f9a7c7d0#.mbglcakmp
- https://github.com/krasimir/react-in-patterns/tree/master/patterns/presentational-and-container
- https://medium.com/@learnreact/container-components-c0e67432e005
- https://medium.com/@learnreact/container-components-c0e67432e005

0 comments on commit f675ef4

Please sign in to comment.