admin-bro
Version:
Admin panel for apps written in node.js
17 lines (14 loc) • 323 B
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.dropNotice = exports.DROP_NOTICE = void 0;
const DROP_NOTICE = 'DROP_NOTICE';
exports.DROP_NOTICE = DROP_NOTICE;
const dropNotice = noticeId => ({
type: 'DROP_NOTICE',
data: {
noticeId
}
});
exports.dropNotice = dropNotice;
;