2020-03-27 13:59:38 -07:00
|
|
|
export const SIDEBAR_OPEN = 'SIDEBAR_OPEN';
|
|
|
|
export const SIDEBAR_CLOSE = 'SIDEBAR_CLOSE';
|
|
|
|
|
|
|
|
export function openSidebar() {
|
|
|
|
return {
|
|
|
|
type: SIDEBAR_OPEN,
|
|
|
|
};
|
2021-08-03 12:22:51 -07:00
|
|
|
}
|
2020-03-27 13:59:38 -07:00
|
|
|
|
|
|
|
export function closeSidebar() {
|
|
|
|
return {
|
|
|
|
type: SIDEBAR_CLOSE,
|
|
|
|
};
|
2021-08-03 12:22:51 -07:00
|
|
|
}
|