Skip to content

Instantly share code, notes, and snippets.

@jxson
Created August 16, 2014 00:24
Show Gist options
  • Save jxson/e379b6a42f687089ea07 to your computer and use it in GitHub Desktop.
Save jxson/e379b6a42f687089ea07 to your computer and use it in GitHub Desktop.

Revisions

  1. jxson created this gist Aug 16, 2014.
    20 changes: 20 additions & 0 deletions mercury-component.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,20 @@

    var mercury = require('mercury');
    var h = mercury.h;

    module.exports = create;
    module.exports.render = render;

    function render(state) {
    return h({}, [
    //...
    ])
    }

    function create(options) {
    var state = mercury.struct({
    //...
    })

    return { state: state }
    }