Created
February 21, 2018 15:24
-
-
Save jdjuan/95748c713c13a3f183b3530b52ccaa90 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 { paint } from './canvas.js'; | |
const { fromEvent } = Rx.Observable; | |
const move$ = fromEvent(document, 'mousemove'); | |
move$.subscribe(paint); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment