bigbuffet-rw/app/soapbox/actions/sidebar.js
2020-05-28 17:56:55 -05:00

14 lines
245 B
JavaScript

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,
};
};