mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-08-02 21:36:27 +00:00
9 lines
211 B
JavaScript
9 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
|
|
});
|
|
};
|