@wasc/renovatio
v1.2.1
Published
A dispatch based system for changing object with simple commands
Downloads
5
Readme
async action:
export default ({ serverId, attributes }) => dispatch => {
dispatch({
type: 'CHANGE',
serverId,
attributes,
});
console.log('API stuff');
dispatch({
type: 'OTHER',
serverId,
attributes,
});
};