This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
|
export const MEDIA_OPEN = 'MEDIA_OPEN';
|
|
export const MODAL_CLOSE = 'MODAL_CLOSE';
|
|
|
|
export function openMedia(url) {
|
|
return {
|
|
type: MEDIA_OPEN,
|
|
url: url
|
|
};
|
|
};
|
|
|
|
export function closeModal() {
|
|
return {
|
|
type: MODAL_CLOSE
|
|
};
|
|
};
|