mirror of
https://github.com/paricafe/misskey.git
synced 2024-11-30 04:46:43 -06: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
|
|
});
|
|
};
|