Let's start by thinking about our presentational components:
- Users module:
- User component : To display a single user object (username and real name).
- Posts module:
- Post component: To display a single post object.
- PostList component: To display multiple post objects
- Filter module:
- Filter component: To display a clickable link to change the filter
- FilterList component: To display multiple links to change the filter and a special link to clear the filter
Create a src/components/ directory for our presentational components.