Rough component architecture so far
- App Component
- Header Component
- Movie Container Component
- Movie "card" Component
- Movie "Detailed View" Component
Data will be stored in the App Component via State, and passed down to movie container and movie card component via props?
I'm imagining data will be stored primarily in state in App.js and passed down to the movie container component via props, where it generates a movie card component based on each item in the provided array from props.
The movie detailed view component will also need to receive this data via props and state so that we can show detailed info for a given movie.
-- From Colgan & Ivonne :)