zordius/fluxex

View on GitHub
examples/00hello/actions/page.js

Summary

Maintainability
A
0 mins
Test Coverage
'use strict';

module.exports = function () {
    return this.dispatch('UPDATE_PRODUCT', {
        title: 'sample product',
        price: 12345,
        sold: 0
    });
};