Skip to content

Instantly share code, notes, and snippets.

@sliptype
Created April 20, 2018 03:53
Show Gist options
  • Save sliptype/2502aec764bb82afe4c15e98e2533627 to your computer and use it in GitHub Desktop.
Save sliptype/2502aec764bb82afe4c15e98e2533627 to your computer and use it in GitHub Desktop.
Cycle App Snippet
import xs from 'xstream'
// Intent
const intent = source => ({
// Object of action streams
})
// Model
const model = actions => {
// Return stream of state
}
// View
const view = state$ => {
// Return stream of DOM nodes
}
// Main
const main = sources => ({
DOM: view(model(intent(sources.DOM)))
})
export default main
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment