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