@bigfishtv/cockpit
Version:
19 lines (16 loc) • 300 B
JavaScript
/**
* @module Reducers/route
*/
const initialState = {
component: null,
props: {},
}
/**
* Reducer for updating the current route
* @param {Object} state
* @param {String} action
* @return {Object} returns state
*/
export default function(state = initialState, action) {
return state
}