Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Error when using xs.of instead of Observale.of #37

Open
abouzoubaa opened this issue Dec 2, 2017 · 1 comment
Open

Error when using xs.of instead of Observale.of #37

abouzoubaa opened this issue Dec 2, 2017 · 1 comment

Comments

@abouzoubaa
Copy link

abouzoubaa commented Dec 2, 2017

@Widdershin

TypeError: xstream_1.default.fromObservable(sinks[name]).subscribe is not a function.

The code in main.js:

import { run } from '@cycle/run';
import { makeCanvasDriver, rect, text } from 'cycle-canvas';
import xs, { stream } from 'xstream';

function main(sources) {
const obj = {
Canvas: xs.of(
rect({
x: 10, y: 10, width: 160, height: 100,
draw: [{ fill: 'purple' }],
children: [
text({x: 15, y: 25, value: 'Hello World!', font: '18pt Arial', draw: [{ fill: 'white' }]})
]
})
)
};
return obj
}
const drivers = {
Canvas: makeCanvasDriver(null, { width: 800, height: 600 })
};
run(main, drivers);

@Widdershin
Copy link
Member

Can you please provide the full stacktrace? Also, import { run } from '';, why is it from ''? What run library are you using?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants