Created
July 9, 2020 11:44
-
-
Save thisiszoaib/c0b72769264733177820e671e7526dcb to your computer and use it in GitHub Desktop.
Weather 12
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="content"> | |
| <div class="flex-row"> | |
| <mat-form-field class="mr"> | |
| <mat-label>Select country</mat-label> | |
| <mat-select [formControl]="countryControl"> | |
| <mat-option *ngFor="let country of countries" [value]="country"> | |
| {{country.name}} | |
| </mat-option> | |
| </mat-select> | |
| </mat-form-field> | |
| <mat-form-field> | |
| <mat-label>Select city</mat-label> | |
| <mat-select [formControl]="cityControl"> | |
| <mat-option *ngFor="let city of ??" [value]="city"> | |
| {{city}} | |
| </mat-option> | |
| </mat-select> | |
| </mat-form-field> | |
| </div> | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment