UNPKG
react-adminlte-components
Version:
latest (0.0.3)
0.0.3
0.0.2
0.0.1
React Components that use AdminLTE theme
github.com/binhqd/reactjs-adminlte
binhqd/reactjs-adminlte
react-adminlte-components
/
reducers
/
menu.js
13 lines
(10 loc)
•
182 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
function
menu
(
state =
''
, action
) {
switch
(action.
type
) {
case
'SET_MENU_ACTIVE'
:
return
action.
id
;
break
;
default
:
return
state; } }
export
{menu};