Created
February 8, 2019 02:06
-
-
Save jessesanders/9a5a40c93da7c76ea8ba97e7b54582e5 to your computer and use it in GitHub Desktop.
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
@Component({ | |
selector: "app-user-list", | |
templateUrl: "./user-list.component.html", | |
styleUrls: ["./user-list.component.css"], | |
changeDetection: ChangeDetectionStrategy.OnPush | |
}) | |
export class UserListComponent { | |
@Input() | |
users: User[]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment