8 lines
211 B
JavaScript
8 lines
211 B
JavaScript
const riot = require('riot');
|
|
|
|
module.exports = message => {
|
|
const notification = document.body.appendChild(document.createElement('mk-ui-notification'));
|
|
riot.mount(notification, {
|
|
message: message
|
|
});
|
|
};
|