Commiting
This commit is contained in:
@@ -1,16 +1,12 @@
|
||||
export const MODAL_OPEN = 'MODAL_OPEN'
|
||||
export const MODAL_CLOSE = 'MODAL_CLOSE'
|
||||
|
||||
export function openModal(type, props) {
|
||||
return {
|
||||
type: MODAL_OPEN,
|
||||
modalType: type,
|
||||
modalProps: props,
|
||||
}
|
||||
}
|
||||
export const openModal = (type, props) => ({
|
||||
type: MODAL_OPEN,
|
||||
modalType: type,
|
||||
modalProps: props,
|
||||
})
|
||||
|
||||
export function closeModal() {
|
||||
return {
|
||||
type: MODAL_CLOSE,
|
||||
}
|
||||
}
|
||||
export const closeModal = () => ({
|
||||
type: MODAL_CLOSE,
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user