mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
fe1de4e49b
Port a12f1a0baf
to glitch-soc
Signed-off-by: Thibaut Girka <thib@sitedethib.com>
18 lines
309 B
JavaScript
18 lines
309 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(type) {
|
|
return {
|
|
type: MODAL_CLOSE,
|
|
modalType: type,
|
|
};
|
|
};
|