Skip to content

Instantly share code, notes, and snippets.

@Gbuomprisco
Created May 27, 2019 14:36
Show Gist options
  • Save Gbuomprisco/45db6d6220ce156f27a33fa60aced713 to your computer and use it in GitHub Desktop.
Save Gbuomprisco/45db6d6220ce156f27a33fa60aced713 to your computer and use it in GitHub Desktop.
@Component({
selector: 'cf-asset-selector',
templateUrl: './asset-selector.component.html',
styleUrls: ['./asset-selector.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush
})
export class AssetSelectorComponent {
@Output() assetSelected = new EventEmitter<string>();
public assets$ = this.assetsFacade.assets$;
constructor(private assetsFacade: AssetsFacadeService) {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment