BLoC
@bloc
export class FooBloc {
data$ = new ReplaySubject('lalala')
change = () => {
this.data$.next('hahaha')
}
}Last updated
Was this helpful?
@bloc
export class FooBloc {
data$ = new ReplaySubject('lalala')
change = () => {
this.data$.next('hahaha')
}
}Last updated
Was this helpful?
Was this helpful?