howardjones/network-weathermap

View on GitHub
websrc/cacti-mgmt/src/reducers/MapSettingsReducer.js

Summary

Maintainability
A
0 mins
Test Coverage

const INITIAL_STATE = [];

export default function (state = INITIAL_STATE, action) {
    switch (action.type) {
        default:
            break;
    }

    return state;
};