react-customized-notifications
Version:
A React Notification System forked from https://github.com/igorprado/react-notification-system
36 lines (30 loc) • 492 B
JavaScript
var CONSTANTS = {
// Positions
positions: {
tl: 'tl',
tr: 'tr',
tc: 'tc',
bl: 'bl',
br: 'br',
bc: 'bc'
},
// Levels
levels: {
success: 'success',
error: 'error',
warning: 'warning',
info: 'info',
loading: 'loading'
},
// Notification defaults
notification: {
title: null,
message: null,
level: null,
position: 'tr',
autoDismiss: 5,
dismissible: true,
action: null
}
};
module.exports = CONSTANTS;