Skip to content

Instantly share code, notes, and snippets.

@lydemann
Created August 29, 2022 05:58
Embed
What would you like to do?
@Component({
selector: ‘target’,
template:
<span>
{{ value$ | push }}
</span>
})
export class Component {
@Input() value$ = Observable<string>;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment