Angular Frontend Overview
In this video we took a look at the architecture for the Angular application we will be building.
We decided that we will have 3 main components. Our Homepage Component will be the main one which will be the initial page displayed in our app. Inside of that page we will host our 2 other Components. The CampList component and the AddOrUpdate component.
Outside of the components we will have a Camp service. This service will contain the logic to talk to our .NET backend.
We want the multiple components & services so we can have good seperation of concerns for our application.