bigbuffet-rw/app/soapbox/actions/modals.ts
2022-04-10 20:31:24 -05:00

19 lines
390 B
TypeScript

export const MODAL_OPEN = 'MODAL_OPEN';
export const MODAL_CLOSE = 'MODAL_CLOSE';
/** Open a modal of the given type */
export function openModal(type: string, props?: any) {
return {
type: MODAL_OPEN,
modalType: type,
modalProps: props,
};
}
/** Close the modal */
export function closeModal(type: string) {
return {
type: MODAL_CLOSE,
modalType: type,
};
}