RSS Git Download  Clone
Raw Blame History 161B 10 lines
import registry from '../../registry.mjs'

const toast = (data) => {
    registry.toast.action({
        message: data.message
    });
};

export default toast;