Skip to content

Instantly share code, notes, and snippets.

@ismaproco
Last active November 7, 2017 22:56
<h1>
{{title}}
</h1>
<mat-form-field>
<input matInput placeholder="Simple Input" [(ngModel)]="title">
</mat-form-field>
<mat-icon>home</mat-icon>
<button mat-raised-button>I'm a button</button>
<mat-form-field>
<mat-select placeholder="I'm a select" [(ngModel)]="selectedValue">
<mat-option *ngFor="let item of items" [value]="item.value">
{{item.view}}
</mat-option>
</mat-select>
</mat-form-field>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment