7 lines
151 B
JavaScript
7 lines
151 B
JavaScript
'use strict'
|
|
|
|
module.exports = {
|
|
'/notifications': (store, params, cb) => {
|
|
cb(store.getState().notifications.notifications.notifications)
|
|
}
|
|
} |