3.0.0 • Published 7 years ago

oolon-startapp v3.0.0

Weekly downloads
2
License
MIT
Repository
-
Last release
7 years ago

#StartApp

##Usage

import app from 'startapp'
app({
  model: {title: 'Hello world'},
  update: {
    setTitle: (state, title) =>
      [{...state, title}]
  },
  view: (state, msg) =>
    ReactDOM.render(<App {...{model, msg}} />, document.getElementById('root')),
  subs: [ // called when dom content is loaded
    (state, msg) => document.body.addEventListener('click', () => msg.setTitle('Body clicked'))
  ]
}
3.0.0

7 years ago

2.0.1

7 years ago

2.0.0

7 years ago

1.1.1

7 years ago

1.1.0

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago