9 lines
135 B
JavaScript
9 lines
135 B
JavaScript
|
import * as types from './actionsTypes';
|
||
|
|
||
|
export function setActiveUser(data) {
|
||
|
return {
|
||
|
type: types.ACTIVE_USERS.SET,
|
||
|
data
|
||
|
};
|
||
|
}
|