11 lines
205 B
JavaScript
11 lines
205 B
JavaScript
import _ from 'lodash';
|
|
|
|
export const alertTypes = _.keyBy([
|
|
'success',
|
|
'info',
|
|
'warning',
|
|
'danger'
|
|
], _.identity);
|
|
|
|
export const normalizeAlertType = alertType => alertTypes[alertType] || 'info';
|