Exercise 4
Part a:
- Create a svelte store to represent a list of cars
- Make it a simple "writeable" store
- Each car in the list should have the following properties: make, model, year, mileage, condition
- Note: for reference, check out the store we made live the other day. The endpoint route is here: /exercises/4/basic-store-example
Part b:
- Create a svelte file to display the current list of cars at /exercises/4/my-answer
- Create a table to display the list of cars. Each car should be depicted as a row in the table, and the table should have column headers.
- Another developer is going to build a svelte file to modify the contents of the store, so for now just worry about displaying the list of cars and not modifying anything.