Skip to content
Snippets Groups Projects
Commit c7b7b21d authored by Reiter, Christoph's avatar Reiter, Christoph :snake:
Browse files

Fix missing export for the notification function

parent 9cd6fad7
No related branches found
No related tags found
No related merge requests found
...@@ -16,9 +16,9 @@ ...@@ -16,9 +16,9 @@
## Sending notifications ## Sending notifications
```javascript ```javascript
import notification from './notification'; import { send } from './notification';
notification.send({ send({
"summary": "Item deleted", "summary": "Item deleted",
"body": "Item foo was deleted!", "body": "Item foo was deleted!",
"type": "info", "type": "info",
......
import './vpu-notification'; import './vpu-notification';
import send from './notification';
export { send };
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment