DigitalConsumer.ISS/src/constants/events.js
2023-08-11 07:35:54 -04:00

17 lines
372 B
JavaScript

const globalEvents = Object.freeze({
Categories: {
GLOBAL_ALERT: 'GLOBAL_ALERT'
},
SubCategories: {
PAGE_NOT_FOUND: 'PAGE_NOT_FOUND'
}
});
const globalEventTypes = Object.freeze({
Success: 'alert-success',
Warning: 'alert-warning',
Info: 'alert-info',
Danger: 'alert-danger'
});
export { globalEvents, globalEventTypes };