The goal of this app is to display a list of customer records in a table. The table should contain a button that will show further details about the customer record.
- Home Page should have 3 components.
- Header Component is just the header for the page. It is already completed.
- Table Component
- Create a table that displays all Customer Records
- The Table should contain 4 columns: FirstName, LastName, Age, and a Details Button.
- Sort the table records by Customer Age.
- Selecting the Details Button should show the Table Details Component with the updated record.
- Style the table in any way you'd like. Feel free to use Angular Material Tables or not, it's up to you.
- Table Detail Component
- Display extra information of the selected Customer Record.
- Included fields: FirstName, LastName, Nickname, Age, PinCode, City, State, Country
- Style this component similar to the completed example below.
