gab-social/app/javascript/gabsocial/actions/sidebar.js

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