You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

25 lines
302 B

import * as types from './actionTypes';
export function menuopen() {
return {
type: types.MENUOPEN
};
}
export function menuclose() {
return {
type: types.MENUCLOSE
};
}
export function main() {
return {
type: types.MAIN
};
}
export function help() {
return {
type: types.HELP
};
}