Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. const helix = require('helix-js').default
  2. helix({
  3. model: {
  4. state: {
  5. posts: []
  6. },
  7. reducers: {
  8. setPosts (state, posts) {
  9. return { posts }
  10. }
  11. }
  12. },
  13. component: console.log,
  14. render: console.log
  15. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement