Creating movie-item component
In this video, we'll correctly display the movie data in the UI.
Separation of concerns
Before we do, I want to mention an important design pattern in component-based frameworks which is "separation of concerns". This essentially means that any one component should not have too many jobs.
That's why we have one component for displaying the movie list, and one for filtering it - two different jobs, two different components.
Click to load comments...