Skip to content

Instantly share code, notes, and snippets.

@jessesanders
Created February 8, 2019 02:06
Show Gist options
  • Save jessesanders/9a5a40c93da7c76ea8ba97e7b54582e5 to your computer and use it in GitHub Desktop.
Save jessesanders/9a5a40c93da7c76ea8ba97e7b54582e5 to your computer and use it in GitHub Desktop.
@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