Added sidebar menu feature

This commit is contained in:
mgabdev
2019-08-14 23:04:03 -04:00
parent 915f7f891a
commit 0be86d6ec5
8 changed files with 369 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
export const SIDEBAR_OPEN = 'SIDEBAR_OPEN';
export const SIDEBAR_CLOSE = 'SIDEBAR_CLOSE';
export function openSidebar() {
return {
type: SIDEBAR_OPEN,
};
};
export function closeSidebar() {
return {
type: SIDEBAR_CLOSE,
};
};