import { Component, Input, OnInit } from '@angular/core' @Component({ selector: 'app-gallery-list', template: `
`, styles: [], }) export class GalleryListComponent { @Input() public photos = [] @Input() public users = [] }