May 2018
Intermediate to advanced
512 pages
11h 3m
English
Now that your View and ViewModel are in place, you need to define your Model. If you look back on the design, you will see that the component needs to display:
You will first create an interface that represents this data structure:
src/app/icurrent-weather.tsexport interface ICurrentWeather {}
This is not an ideal setup, since we may add numerous interfaces to our app and it can get tedious to track down various interfaces. Over time, ...
Read now
Unlock full access