Gab-Social/app/javascript/gabsocial/actions/sidebar.js
2020-11-15 12:48:32 -06:00

11 lines
215 B
JavaScript

export const SIDEBAR_OPEN = 'SIDEBAR_OPEN'
export const SIDEBAR_CLOSE = 'SIDEBAR_CLOSE'
export const openSidebar = () => ({
type: SIDEBAR_OPEN,
})
export const closeSidebar = () => ({
type: SIDEBAR_CLOSE,
})