Commiting
This commit is contained in:
@@ -1,14 +1,10 @@
|
||||
export const SIDEBAR_OPEN = 'SIDEBAR_OPEN'
|
||||
export const SIDEBAR_CLOSE = 'SIDEBAR_CLOSE'
|
||||
|
||||
export function openSidebar() {
|
||||
return {
|
||||
type: SIDEBAR_OPEN,
|
||||
}
|
||||
}
|
||||
export const openSidebar = () => ({
|
||||
type: SIDEBAR_OPEN,
|
||||
})
|
||||
|
||||
export function closeSidebar() {
|
||||
return {
|
||||
type: SIDEBAR_CLOSE,
|
||||
}
|
||||
}
|
||||
export const closeSidebar = () => ({
|
||||
type: SIDEBAR_CLOSE,
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user