8 lines
141 B
JavaScript
8 lines
141 B
JavaScript
export const setPopupFile = (file) => ({
|
|
type: "SET_POPUP_FILE",
|
|
file
|
|
})
|
|
|
|
export const hidePopup = () => ({
|
|
type: "HIDE_POPUP"
|
|
}) |