prokuranepal/inventory_app

View on GitHub
src/store/actions/ip.js

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
export const UPDATE_IP = 'UPDATE_IP';
export const CHANGE_MODE = 'CHANGE_MODE';


export const updateIP = ip => {
    return {
        type: UPDATE_IP,
        ip: ip
    }

}

export const changeMode = () => {
    return {
        type: CHANGE_MODE,
    }

}