mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-05-16 02:26:57 +00:00
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
|
|
});
|
|
};
|