mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
17 lines
282 B
JavaScript
17 lines
282 B
JavaScript
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 function closeModal() {
|
|
return {
|
|
type: MODAL_CLOSE
|
|
};
|
|
};
|