Reputation: 2892
I use import { showNotification as showNotificationAction } from 'admin-on-rest';
I call it like showNotification(res.error.message, "warning")
or showNotification(res.error.message, "info")
. Which other types of messages can I use except info and warning?
Upvotes: 0
Views: 790
Reputation: 7066
This part is still not documented so you'll have to explore the source code: https://github.com/marmelab/admin-on-rest/blob/master/src/reducer/admin/notification.js#L8
Upvotes: 3