We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
@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);
The text was updated successfully, but these errors were encountered:
Can you please provide the full stacktrace? Also, import { run } from '';, why is it from ''? What run library are you using?
import { run } from '';
Sorry, something went wrong.
No branches or pull requests
@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);
The text was updated successfully, but these errors were encountered: