Created
April 29, 2019 11:47
-
-
Save Kelin2025/b3ef62c9654a146a8f03b726bca60875 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { interval } from 'rxjs' | |
import { fromObservable } from 'effector' | |
//emit value in sequence every 1 second | |
const tick = interval(1000) | |
const tickEvent = fromObservable(tick) | |
//output: 0,1,2,3,4,5.... | |
tickEvent.watch(console.log) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment