@brizy/media-gallery
Version:
10 lines (9 loc) • 330 B
JavaScript
import * as Notifications from "../../containers/GlobalNotifications/types/Actions";
export var notificationKeyPrefix = "mediaGallery:";
export var typeError = function(message) {
return Notifications.add({
key: "".concat(notificationKeyPrefix, "typeError"),
type: "error",
message: message
});
};