blob: c0baf5678c4afb1d365c8492a71ecbb93acf4648 (
plain)
1
2
3
4
5
6
7
8
9
10
|
import { SET_CURRENT_TOPOLOGY } from '../actions/topology/building'
export function currentTopologyId(state = '-1', action) {
switch (action.type) {
case SET_CURRENT_TOPOLOGY:
return action.topologyId
default:
return state
}
}
|